#compdef grml-x # Filename: /etc/zsh/completion.d/grml-x # Purpose: completion for command grml-x for zsh (z shell) # Authors: grml-team (grml.org), (c) Michael Prokop # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. # Latest change: Mon Nov 05 23:28:28 CET 2007 [mika] ################################################################################ local arguments wm local -a wms wms=() for wm in awesome blackbox dwm evilwm fluxbox fvwm fvwm2 fvwm-crystal \ gnome-session gnomesession icewm ion2 ion3 jwm larswm openbox \ pekwm pwm3 ratpoison startkde twm w9wm windowlab wmi wmii wm-ng \ xfce4 xfwm4 xmonad ; do [ -x /usr/bin/$wm ] && wms+=$wm done arguments=( '-composite[enable composite extension (disabled by default)]' '-display:display for xserver:(7 8)' '-force[force creation of xconfig file]' '-help:[display help]' '-genmouse[generate generic entry for mouse using /dev/input/mice and auto protocol]' '-hsync:horizontal sync frequencies ():(28 `seq 30 5 95` 96)' '-mode:resolution-mode for xserver (x - e.g. 1024x768)]:(1920x1440 1600x1200 1400x1050 1280x1024 1280x960 1024x768 800x600 640x480)' '-module:module for xserver :(`cd /usr/lib/xorg/modules/drivers/ && /bin/ls *.so | sed -e 's/_drv.so//' -e 's/.so//'`)' '-nodpms[disable Display Power Management Signaling]' '-noddc[use static resolution modes for monitors without support for ddc probing]' '-nohsync[do not activate HorizSync-entry]' '-nostart[do not start X server]' '-nosynaptics[use a synaptics touchpad without synaptics driver/functions]' '-nosync[do not use static horizontal and vertical sync frequencies but let it choose the X-server]' '-novref[do not activate VertRefresh-entry]' '-ps2[add entry for PS/2 mouse]' '-usb[add entry for USB mouse]' '-vsync:vertical sync frequencies ():(43 `seq 45 5 70` 72)' '-xinerama[try to set up multihead using Xinerama setup]' ':window manager:($wms)' ) _arguments -s $arguments ## END OF FILE ################################################################# # vim:foldmethod=marker