當我啟動 Ubuntu 時,它會連接到我的顯示器。如何始終預設以旋轉模式啟動? (不是我們日常使用的預設值)。我試圖將其設為 -90 或 -180 或 -45,但還無法實現。
答案1
我遇到了一個可以完成您想做的事情的腳本:
#!/bin/sh
rotation=`xrandr -q | grep "Current rotation" | cut -d"-" -f2`
if [ $rotation = "normal" ] ;
then
xrandr -o left <-------- change it to whatever you want
else
xrandr -o normal
fi
- 只需將這些行保存在文件中並使其可執行即可。該腳本只是檢查當前的旋轉模式。如果正常則將其設為左側,否則將其設為正常。 (請注意,要使用此腳本,您必須具有 RandR 擴充功能並且您的視訊驅動程式必須支援它)。
正如您所看到的,您可以僅更改這些值來滿足您的需求。
或直接輸入:
xrandr -o orientation <------- where "orientation" is left, right, normal, etc.