fish-shell/share/functions/__fish_print_xrandr_modes.fish

14 lines
300 B
Fish
Raw Normal View History

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