|
14 | 14 |
|
15 | 15 | # commands |
16 | 16 | complete -c dunstctl -f -n __fish_use_subcommand -a action -d 'Perform the default action, or open the context menu of the notification at the given position' |
17 | | -complete -c dunstctl -f -n __fish_use_subcommand -a close -d 'Close the last notification' |
18 | | -complete -c dunstctl -f -n __fish_use_subcommand -a close-all -d 'Close the all notifications' |
| 17 | +complete -c dunstctl -f -n __fish_use_subcommand -a close -d 'Close the last notification or optionally the notification with given ID' |
| 18 | +complete -c dunstctl -f -n __fish_use_subcommand -a close-all -d 'Close all the notifications' |
19 | 19 | complete -c dunstctl -f -n __fish_use_subcommand -a context -d 'Open context menu' |
20 | 20 | complete -c dunstctl -f -n __fish_use_subcommand -a count -d 'Show the number of notifications' |
21 | 21 | complete -c dunstctl -f -n __fish_use_subcommand -a history -d 'Display notification history (in JSON)' |
22 | 22 | complete -c dunstctl -f -n __fish_use_subcommand -a history-clear -d 'Delete all notifications from history' |
23 | 23 | complete -c dunstctl -f -n __fish_use_subcommand -a history-pop -d 'Pop the latest notification from history or optionally the notification with given ID' |
24 | 24 | complete -c dunstctl -f -n __fish_use_subcommand -a history-rm -d 'Remove the notification from history with given ID' |
25 | | -complete -c dunstctl -f -n __fish_use_subcommand -a is-paused -d 'Check if dunst is running or paused' |
| 25 | +complete -c dunstctl -f -n __fish_use_subcommand -a is-paused -d 'Check if pause level is greater than 0' |
26 | 26 | complete -c dunstctl -f -n __fish_use_subcommand -a set-paused -d 'Set the pause status' |
| 27 | +complete -c dunstctl -f -n __fish_use_subcommand -a get-pause-level -d 'Get the current pause level' |
| 28 | +complete -c dunstctl -f -n __fish_use_subcommand -a set-pause-level -d 'Set the pause level' |
27 | 29 | complete -c dunstctl -f -n __fish_use_subcommand -a rules -d 'Displays configured rules (optionally in JSON)' |
28 | 30 | complete -c dunstctl -f -n __fish_use_subcommand -a rule -d 'Enable or disable a rule by its name' |
29 | 31 | complete -c dunstctl -f -n __fish_use_subcommand -a debug -d 'Print debugging information' |
30 | | -complete -c dunstctl -f -n __fish_use_subcommand -a help -d 'Show this help' |
| 32 | +complete -c dunstctl -f -n __fish_use_subcommand -a help -d 'Show help' |
31 | 33 |
|
32 | 34 | # command specific arguments |
33 | | -complete -c dunstctl -x -n '__fish_seen_subcommand_from action close close-all context history history-clear is-paused debug help' |
| 35 | +complete -c dunstctl -x -n '__fish_seen_subcommand_from action close close-all context history history-clear is-paused get-pause-level set-pause-level debug help' |
34 | 36 | complete -c dunstctl -x -n '__fish_seen_subcommand_from count' -a 'displayed history waiting' |
35 | 37 | complete -c dunstctl -x -n '__fish_seen_subcommand_from history-pop history-rm' -a '(__fish_dunstctl_info history id appname)' |
36 | 38 | complete -c dunstctl -x -n '__fish_seen_subcommand_from set-paused' -a 'true false toggle' |
|
0 commit comments