mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-12 16:07:33 +00:00
14 lines
300 B
Fish
14 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
|