Stelle den Bildschirm des Laptops als primären Monitor ein.
Ich kann das mit der Maus oder mit einem solchen Skript:
#!/usr/bin/bash
## Monitor 2 an, gedreht
MonitorLG=$(xrandr | grep 'HDMI' | grep 'connected' | cut -d ' ' -f1);
MonitorLenovo=$(xrandr | grep 'VGA' | grep 'connected' | cut -d ' ' -f1);
xrandr --nograb --output $MonitorLG --mode 1920x1080 --pos 0x0 --rotate normal --primary --output $MonitorLenovo --mode 1280x1024 --pos 1924x0 --rotate left
#!/usr/bin/bash
## Monitor 2 aus
MonitorLG=$(xrandr | grep 'HDMI' | grep 'connected' | cut -d ' ' -f1);
MonitorLenovo=$(xrandr | grep 'VGA' | grep 'connected' | cut -d ' ' -f1);
xrandr --nograb --output $MonitorLG --mode 1920x1080 --pos 0x0 --rotate normal --primary --output $MonitorLenovo --off
Mehr dazu hier:
https://wiki.ubuntuusers.de/RandR/
ZUsatzfrage: Einige Icons sind doppelt. Rechte Maustaste - löschen ist nicht vorgesehen.
Hm. Unter XFCE4 klicke ich mit der rechten Maustaste auf den Desktop, wähle dann aus dem Kontextmenü „Schreibtischeinstellungen“, dort „Symbole“.
XFCE4 ist sehr zu empfehlen...