aboutsummaryrefslogtreecommitdiff
path: root/completions/zsh
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2019-01-12 09:40:09 -0500
committerBrian Ashworth <bosrsf04@gmail.com>2019-01-12 11:24:06 -0500
commitbc808680b173d5a3c4732265b33e2e8bd81e4d9b (patch)
tree800d9f0ba88f37c2dd35aae09fcdbec91c0532c3 /completions/zsh
parentd256182f492c3d8a6803fa2a5880b1283fbe1e4c (diff)
Split swayidle from sway
Diffstat (limited to 'completions/zsh')
-rw-r--r--completions/zsh/_swayidle22
1 files changed, 0 insertions, 22 deletions
diff --git a/completions/zsh/_swayidle b/completions/zsh/_swayidle
deleted file mode 100644
index b419bc2c..00000000
--- a/completions/zsh/_swayidle
+++ /dev/null
@@ -1,22 +0,0 @@
-#compdef swayidle
-#
-# Completion script for swayidle
-#
-
-local events=('timeout:Execute timeout command if there is no activity for timeout seconds'
- 'before-sleep:Execute before-sleep command before sleep')
-local resume=('resume:Execute command when there is activity again')
-
-if (($#words <= 2)); then
- _arguments -C \
- '(-h --help)'{-h,--help}'[Show help message and quit]' \
- '(-d)'-d'[Enable debug output]'
- _describe -t "events" 'swayidle' events
-
-elif [[ "$words[-3]" == before-sleep || "$words[-3]" == resume ]]; then
- _describe -t "events" 'swayidle' events
-
-elif [[ "$words[-4]" == timeout ]]; then
- _describe -t "events" 'swayidle' events
- _describe -t "resume" 'swayidle' resume
-fi