mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-15 14:34:05 +00:00
5 lines
142 B
Fish
5 lines
142 B
Fish
function __fish_print_xrandr_outputs --description 'Print xrandr outputs'
|
|
xrandr | sed '/^Screen\|^ /d; s/^\(\S\+\) \+\(.\+\)/\1\t\2/'
|
|
|
|
|
|
end
|