fish-shell/share/functions/__fish_print_xrandr_modes.fish
2012-06-13 16:46:13 +04:00

13 lines
300 B
Fish

function __fish_print_xrandr_modes --description 'Print xrandr modes'
set -l out
xrandr | sed '/^Screen/d; s/^ \+/mode: /' | while read -l output mode misc
switch $output
case mode:
echo $mode\t(echo $misc | sed 's/\(^ \+\)\|\( *$\)//') [$out]
case '*'
set out $output
end
end
end