当我启动 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.