mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 04:43:10 +00:00
Add i3-msg completions
This commit is contained in:
parent
0d170222a6
commit
61f272495d
1 changed files with 16 additions and 0 deletions
16
share/completions/i3-msg.fish
Normal file
16
share/completions/i3-msg.fish
Normal file
|
@ -0,0 +1,16 @@
|
|||
# i3-msg is a tool to send messages to the i3 window manager.
|
||||
# See: https://i3wm.org
|
||||
|
||||
complete -c i3-msg -l quiet -s q -d 'Only send ipc message and suppress output'
|
||||
complete -c i3-msg -l version -s v -d 'Display version number and exit'
|
||||
complete -c i3-msg -l help -s h -d 'Display help and exit'
|
||||
complete -c i3-msg -l socket -s s -d 'Set socket'
|
||||
complete -c i3-msg -s t -x -d 'Specify ipc message type' -a '
|
||||
command\t"Payload is a command"
|
||||
get_workspaces\t"Get current workspace"
|
||||
get_outputs\t"Get current outputs"
|
||||
get_tree\t"Get layout tree"
|
||||
get_marks\t"Get list of marks"
|
||||
get_bar_config\t"Get list of configured binding modes"
|
||||
get_version\t"Get i3 version"
|
||||
'
|
Loading…
Reference in a new issue