2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-02-01 14:53:28 +00:00
fish-shell/share/functions/__fish_print_xrandr_modes.fish

14 lines
367 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