about summary refs log tree commit diff
path: root/Completion/Linux/Type
diff options
context:
space:
mode:
authorClint Adams <clint@users.sourceforge.net>2006-09-30 21:03:44 +0000
committerClint Adams <clint@users.sourceforge.net>2006-09-30 21:03:44 +0000
commit3ede15153ee4f39c06ffe16ed3dcacab90e92436 (patch)
tree5cca7aa6a9cd7c5e98a6e6be846b62fad4080e67 /Completion/Linux/Type
parent21c1e9a34649dc5c3b36bc90b2a3199bc9a2557a (diff)
downloadzsh-3ede15153ee4f39c06ffe16ed3dcacab90e92436.tar.gz
zsh-3ede15153ee4f39c06ffe16ed3dcacab90e92436.tar.xz
zsh-3ede15153ee4f39c06ffe16ed3dcacab90e92436.zip
22794: completion for acpitool.
Diffstat (limited to 'Completion/Linux/Type')
-rw-r--r--Completion/Linux/Type/_wakeup_capable_devices15
1 files changed, 15 insertions, 0 deletions
diff --git a/Completion/Linux/Type/_wakeup_capable_devices b/Completion/Linux/Type/_wakeup_capable_devices
new file mode 100644
index 000000000..dd79d2d0d
--- /dev/null
+++ b/Completion/Linux/Type/_wakeup_capable_devices
@@ -0,0 +1,15 @@
+#autoload
+
+local ret=1 item devline expl
+typeset -a desc
+
+_call_program wakeup-capable-devices acpitool -w 2> /dev/null |
+while read devline; do
+  [[ -n ${devline:#(#b)([0-9]#).[[:space:]]#([^[:space:]]#)[[:space:]]#[0-9]#[[:space:]]#(*)} ]] && continue
+  zformat -f item "${match[1]}:%8d (currently ${match[3]})" d:${match[2]}
+  desc+=$item
+done
+
+_describe -t wakeup-capable-devices 'wakeup capable device' desc $@ && ret=0
+
+return ret