mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-11 15:37:24 +00:00
6 lines
142 B
Fish
6 lines
142 B
Fish
|
function __fish_print_xrandr_outputs --description 'Print xrandr outputs'
|
||
|
xrandr | sed '/^Screen\|^ /d; s/^\(\S\+\) \+\(.\+\)/\1\t\2/'
|
||
|
|
||
|
|
||
|
end
|