web-dev-qa-db-fra.com

Comment utiliser ARandR pour créer une disposition de moniteur permanente dans Lubuntu 12.10?

Alors, ARandR est idéal pour configurer la disposition de mon moniteur dans Lubuntu 12.10, mais même si je sauvegarde la disposition dans le

~/.screenlayout

il ne semble pas sauver cette mise en page, peu importe comment j'appelle le fichier.

11
alexpotato

Il s'avère qu'il existe un fichier .desktop pour lxrandr que vous pouvez éditer avec le contenu d'un fichier ARandR.

par exemple. voici mon fichier ARandR pour un ordinateur portable avec un moniteur externe connecté.

$ 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

et voici le lxrandr avec la commande xrandr ajoutée et l'ancienne commande commentée:

$ 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
13
alexpotato