Ich habe mir ein Skript gemacht, welches die Icons auf den rechten Bildschirm verschiebt. #!/bin/bash # $0 moves Icons to the other screen .. WINDOW_SHORT="Schreibtisch" XWININFO=/usr/bin/xwininfo
until $XWININFO -tree -root | grep $WINDOW_SHORT ; do echo xwininfo $? /bin/sleep 5 done WMCTRL_PARMS=0,1920,0,1440,800 WMCTRL=/usr/bin/wmctrl [ -x "$WMCTRL" ] || close_on_error $WMCTRL -r ${WINDOW_SHORT} -b remove,maximize_vert,maximize_horz $WMCTRL -r "${WINDOW_SHORT}" -e "$WMCTRL_PARMS"
Leider nimmt wmctrl die Parameter für das Fenster Schreibtisch nicht an, und die Icons rutschen auf dem kleinen Bildschirm nach unten heraus. Ratlos.