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