Answers:
进入键盘->快捷方式,选择“自定义快捷方式”,然后按“ +”添加新的快捷方式。
“名称”是操作的描述性名称(即“旋转监视器”)。在“命令”中,键入激活快捷方式时要运行的自定义命令。
快捷方式位于列表中后,选择其行,按ENTER,然后按要激活快捷键的组合键。如果发生冲突,快捷方式管理器会告诉您,您可以选择其他组合。
您可以使用快捷方式来启用旋转显示,而可以使用另一个快捷方式将其恢复到竖直位置。您甚至可以,如果您有足够的知识,可以编写一个维持状态并仅在直立/旋转之间切换的命令。
现在,对于您需要使用的命令,可能是xrandr:
xrandr --output HDMI1 --rotate left
xrandr --output HDMI1 --rotate normal
输出参数取决于显示器插入的端口。要查看您当前拥有的内容,请输入:
xrandr -q
我的说:
Screen 0: minimum 320 x 200, current 1366 x 768, maximum 8192 x 8192
LVDS1 connected 1366x768+0+0 (normal left inverted right x axis y axis) 309mm x 174mm
1366x768 60.0*+
1360x768 59.8 60.0
1024x768 60.0
800x600 60.3 56.2
640x480 59.9
VGA2 disconnected (normal left inverted right x axis y axis)
HDMI1 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)
在这种情况下,我的--output将是LVDS1,因为所有其他输出都已断开连接。
xrandr -q
?
xrandr -o right
也可以,不需要指定当前目标
output LVDS1 not found;
并output HTMI1 not found;
感谢@ whitenoisedb的评论我只是用xrandr -o normal
,没有指定--output
参数把屏幕恢复到正常的方向。
适用于
xrandr --output LVDS1 --rotate left
xrandr --output LVDS1 --rotate right
xrandr --output LVDS1 --rotate inverted
xrandr --output LVDS1 --rotate normal
这是一个基于传感器输入的很好的例子:https : //linuxappfinder.com/blog/auto_screen_rotation_in_ubuntu
因此,基本上,请尝试上述操作以识别要旋转的屏幕。根据型号监视器的不同,可能会有一个传感器发送信号?
这对于带内置旋转传感器的Lenovo Yoga 2 11来说效果很好,它也可以移动统一底座。
剧本:
#!/bin/sh
# Auto rotate screen based on device orientation
# Receives input from monitor-sensor (part of iio-sensor-proxy package)
# Screen orientation and launcher location is set based upon accelerometer position
# Launcher will be on the left in a landscape orientation and on the bottom in a portrait orientation
# This script should be added to startup applications for the user
# Clear sensor.log so it doesn't get too long over time
> sensor.log
# Launch monitor-sensor and store the output in a variable that can be parsed by the rest of the script
monitor-sensor >> sensor.log 2>&1 &
# Parse output or monitor sensor to get the new orientation whenever the log file is updated
# Possibles are: normal, bottom-up, right-up, left-up
# Light data will be ignored
while inotifywait -e modify sensor.log; do
# Read the last line that was added to the file and get the orientation
ORIENTATION=$(tail -n 1 sensor.log | grep 'orientation' | grep -oE '[^ ]+$')
# Set the actions to be taken for each possible orientation
case "$ORIENTATION" in
normal)
xrandr --output eDP1 --rotate normal && gsettings set com.canonical.Unity.Launcher launcher-position Left ;;
bottom-up)
xrandr --output eDP1 --rotate inverted && gsettings set com.canonical.Unity.Launcher launcher-position Left ;;
right-up)
xrandr --output eDP1 --rotate right && gsettings set com.canonical.Unity.Launcher launcher-position Bottom ;;
left-up)
xrandr --output eDP1 --rotate left && gsettings set com.canonical.Unity.Launcher launcher-position Bottom ;;
esac
done
传感器的前提条件:
sudo apt install iio-sensor-proxy inotify-tools
monitor-sensor
没有任何输出。你知道我可以配置吗?我有一部马力,并lsmod | grep acc
显示了hp_accel 28672 0
lis3lv02d 20480 1 hp_accel
我写了一个shell脚本来做到这一点。(需要xrandr grep awk)
#!/bin/sh
# invert_screen copyright 20170516 alexx MIT Licence ver 1.0
orientation=$(xrandr -q|grep -v dis|grep connected|awk '{print $4}')
display=$(xrandr -q|grep -v dis|grep connected|awk '{print $1}')
if [ "$orientation" == "inverted" ]; then
xrandr --output $display --rotate normal
else
xrandr --output $display --rotate inverted
fi
如果您喜欢单线:
[ "$(xrandr -q|grep -v dis|grep con|awk '{print $4}')" == 'inverted' ] && xrandr -o normal || xrandr -o inverted
$5
是$4
。
[ "$(xrandr -q|grep -v dis|grep con|awk '{print $5}')" != 'inverted' ] && xrandr -o inverted || xrandr -o normal
更安全,因为它默认为“正常”