about summary refs log tree commit diff
path: root/Completion/Linux/Type/_wakeup_capable_devices
diff options
context:
space:
mode:
authorPaul Ackersviller <packersv@users.sourceforge.net>2007-10-29 20:39:15 +0000
committerPaul Ackersviller <packersv@users.sourceforge.net>2007-10-29 20:39:15 +0000
commit234a0acea79d8f79032f6cbda88e7720984b87e8 (patch)
treee71434dc815b245349d6c880b95807c74d37017c /Completion/Linux/Type/_wakeup_capable_devices
parent52f25ab3d2d81a7c3172a54e3c0824de40b30270 (diff)
downloadzsh-234a0acea79d8f79032f6cbda88e7720984b87e8.tar.gz
zsh-234a0acea79d8f79032f6cbda88e7720984b87e8.tar.xz
zsh-234a0acea79d8f79032f6cbda88e7720984b87e8.zip
Merge new completions 22794, 22797, 22798, 22799, and 22800 onto 4.2 branch.
Diffstat (limited to 'Completion/Linux/Type/_wakeup_capable_devices')
-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..daad43b7a
--- /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