summaryrefslogtreecommitdiffstats
path: root/move/tree/startkde_move
blob: e8bec3da7df23c247de9f8d9adb58eaf12a612e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

#- exit cleanly on SIGUSR1, so that our init can see a clean shutdown and automatically reboot
reboot () {
    exit 0
}
trap 'reboot' SIGUSR1

while true; do
    wait4x || exit 1
    xwait -permanent &
    xdim=`xdpyinfo | perl -ne 'print $1 if /dimensions:\s*(\d+)/'`
    qiv --root /image/move/BOOT-$xdim-MOVE.jpg
    startkde
    sudo killall X
done