mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-15 14:34:05 +00:00
13 lines
300 B
Fish
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
|