Command-Line

從 shell 啟用第二個監視器

  • April 24, 2018

所以…我的 Ubuntu 機器上有兩台顯示器。每次我在 Wine 下啟動一些 Windows OpenGL 應用程序時,它都會關閉第二個監視器。並在應用程序退出時將其關閉。我想知道,是否有一個 shell 命令可以立即打開第二台顯示器?

xrandr命令是您要查找的命令。一個範例用法是:

xrandr --output HDMI1 --auto --same-as LVDS1

你可以擁有--left-of, --right-of. xrandr自行執行以查看可用的不同輸出。

使用不帶參數的 xrandr 命令查看輸出名稱和支持的解析度。

獲得這些資訊後,您可以像這樣設置螢幕(這是一個範例,還有很多其他選項):

**xrandr --output <output> --mode <resolution> --right-of/--left-of <output>**

您也可以使用以下方法重新啟動您的螢幕:

**xrandr --output <output> --auto**

引用自:https://unix.stackexchange.com/questions/124878