aboutsummaryrefslogtreecommitdiff
path: root/completions/zsh/_swaybar
diff options
context:
space:
mode:
Diffstat (limited to 'completions/zsh/_swaybar')
-rw-r--r--completions/zsh/_swaybar13
1 files changed, 13 insertions, 0 deletions
diff --git a/completions/zsh/_swaybar b/completions/zsh/_swaybar
new file mode 100644
index 00000000..4fdfdd8a
--- /dev/null
+++ b/completions/zsh/_swaybar
@@ -0,0 +1,13 @@
+#compdef swaybar
+#
+# Completion script for swaybar
+#
+
+local bars=($(swaymsg -t get_bar_config | sed -e '/^\[/,/\]$/{//d;s/^ *"\(.*\)",\?.*$/\1/}'))
+
+_arguments -s \
+ '(-h --help)'{-h,--help}'[Show help message and quit]' \
+ '(-v --version)'{-v,--version}'[Show version and quit]' \
+ '(-s --socket)'{-s,--socket}'[Connect to sway via socket]:filename:_files' \
+ '(-b --bar_id)'{-b,--bar-id}'[Bar ID for which to get the configuration]:filename:($bars)'\
+ '(-d --debug)'{-d,--debug}'[Enable debugging]'