如何使用 ARandR 在 Lubuntu 12.10 中创建永久监视器布局?

如何使用 ARandR 在 Lubuntu 12.10 中创建永久监视器布局?

因此,ARandR 非常适合在 Lubuntu 12.10 中设置我的显示器布局,但即使我将布局保存到

~/.screenlayout

无论我将文件命名为什么,它似乎都无法保存该布局。

答案1

事实证明 lxrandr 有一个 .desktop 文件,您可以使用 ARandR 文件中的内容来编辑该文件。

例如这是我的带有外接显示器的笔记本电脑的 ARandR 文件。

$ cat ~/.screenlayout/dual.sh 
#!/bin/sh
xrandr --output VGA-0 --mode 1920x1080 --pos 0x0 --rotate normal --output LVDS --mode 1280x800 --pos 1920x280 --rotate normal --output HDMI-0 --off

下面是添加了 xrandr 命令并注释掉旧命令的 lxrandr:

$ cat ~/.config/autostart/lxrandr-autostart.desktop 
[Desktop Entry]
Type=Application
Name=LXRandR autostart
Comment=Start xrandr with settings done in LXRandR
Exec=xrandr --output VGA-0 --mode 1920x1080 --pos 0x0 --rotate normal --output LVDS --mode 1280x800 --pos 1920x280 --rotate normal --output HDMI-0 --off
#Exec=xrandr --output LVDS --mode 1280x800 --rate 59.8 --output VGA-0 --mode 1920x1080
OnlyShowIn=LXDE

相关内容