我有一些依赖于当前显示器焦点的脚本,并且想要一个可以在显示器之间切换当前焦点的键绑定。有什么想法吗?
答案1
是的,您可以使用xrandr
(-q
给出监视器列表):
仅限外部:
xrandr --output VGA1 --auto --output LVDS1 --off
左侧延伸,内部主要:
xrandr --output VGA1 --auto --left-of LVDS1 --output LVDS1 --auto --primary
左侧延伸,外部主要:
xrandr --output VGA1 --auto --left-of LVDS1 --primary --output LVDS1 --auto
仅限内部:
xrandr --output VGA1 --off --output LVDS1 --auto
来源:从命令行切换监视器