diff options
| author | polykernel <81340136+polykernel@users.noreply.github.com> | 2023-11-06 10:53:44 -0500 |
|---|---|---|
| committer | polykernel <81340136+polykernel@users.noreply.github.com> | 2023-11-08 00:46:56 -0500 |
| commit | 2b463c9e4df867c2cffd254ef90bb200460a61f4 (patch) | |
| tree | 4e301390a1a05429ec386d9890855cf681fe6991 /completions/fish/riverctl.fish | |
| parent | a0ea456ab2c8ea40232d920c2837cd6222c8c0c3 (diff) | |
| download | river-2b463c9e4df867c2cffd254ef90bb200460a61f4.tar.gz river-2b463c9e4df867c2cffd254ef90bb200460a61f4.tar.xz | |
river: add fullscreen rule
This commit adds a fullscreen rule for configuring
whether the view should be drawn fullscreen on start up.
The actions "fullscreen" and "no-fullscreen" map to the two
possible state of a view and semantically operate on the same
rule list. The behavior of adding, deleting and listing rules
follows that of float and ssd.
Diffstat (limited to 'completions/fish/riverctl.fish')
| -rw-r--r-- | completions/fish/riverctl.fish | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/completions/fish/riverctl.fish b/completions/fish/riverctl.fish index 5f596b9..9b321f3 100644 --- a/completions/fish/riverctl.fish +++ b/completions/fish/riverctl.fish @@ -88,10 +88,10 @@ complete -c riverctl -n '__fish_seen_subcommand_from unmap' complete -c riverctl -n '__fish_seen_subcommand_from attach-mode' -n '__fish_riverctl_complete_arg 2' -a 'top bottom' complete -c riverctl -n '__fish_seen_subcommand_from focus-follows-cursor' -n '__fish_riverctl_complete_arg 2' -a 'disabled normal always' complete -c riverctl -n '__fish_seen_subcommand_from set-cursor-warp' -n '__fish_riverctl_complete_arg 2' -a 'disabled on-output-change on-focus-change' -complete -c riverctl -n '__fish_seen_subcommand_from list-rules' -n '__fish_riverctl_complete_arg 2' -a 'float ssd tag output position dimensions' +complete -c riverctl -n '__fish_seen_subcommand_from list-rules' -n '__fish_riverctl_complete_arg 2' -a 'float ssd tag output position dimensions fullscreen' # Options and subcommands for 'rule-add' and 'rule-del' -set -l rule_actions float no-float ssd csd tag output position dimensions +set -l rule_actions float no-float ssd csd tag output position dimensions fullscreen no-fullscreen complete -c riverctl -n '__fish_seen_subcommand_from rule-add rule-del' -n "not __fish_seen_subcommand_from $rule_actions" -n 'not __fish_seen_argument -o app-id' -o 'app-id' -r complete -c riverctl -n '__fish_seen_subcommand_from rule-add rule-del' -n "not __fish_seen_subcommand_from $rule_actions" -n 'not __fish_seen_argument -o title' -o 'title' -r complete -c riverctl -n '__fish_seen_subcommand_from rule-add rule-del' -n "not __fish_seen_subcommand_from $rule_actions" -n 'test (math (count (commandline -opc)) % 2) -eq 0' -a "$rule_actions" |
