mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 01:16:36 +08:00
d4034fc253
darcs-hash:20060111141735-ac50b-b6a9ac5d5d9eb8eac28dd39968cd28f99044e8f5.gz
33 lines
1.1 KiB
Fish
33 lines
1.1 KiB
Fish
|
|
complete -c xprop -o help -d (_ "Display help and exit")
|
|
complete -c xprop -o grammar -d (_ "Display grammar and exit")
|
|
complete -c xprop -o id -x -d (_ "Select window by id")
|
|
complete -c xprop -o name -d (_ "Select window by name")
|
|
complete -c xprop -o font -x -d (_ "Display font properties")
|
|
complete -c xprop -o root -d (_ "Select root window")
|
|
complete -c xprop -o display -d (_ "Specify X server")
|
|
complete -c xprop -o len -x -d (_ "Maximum display length")
|
|
complete -c xprop -o notype -d (_ "Do not show property type")
|
|
complete -c xprop -o fs -r -d (_ "Set format file")
|
|
complete -c xprop -o frame -d (_ "Select a window by clicking on its frame" )
|
|
complete -c xprop -o remove -d (_ "Remove property") -x -a "
|
|
(
|
|
xprop -root -notype|cut -d ' ' -f 1|cut -d \t -f 1
|
|
)
|
|
"
|
|
|
|
complete -c xprop -o set -d (_ "Set property") -x -a "
|
|
(
|
|
xprop -root -notype|cut -d ' ' -f 1|cut -d \t -f 1
|
|
)
|
|
"
|
|
|
|
complete -c xprop -o spy -d (_ "Examine property updates forever")
|
|
complete -c xprop -o f -d (_ "Set format")
|
|
complete -c xprop -d Property -x -a "
|
|
(
|
|
xprop -root -notype|cut -d ' ' -f 1|cut -d \t -f 1
|
|
)
|
|
"
|
|
|