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

#- exit cleanly on SIGUSR1, so that our init can see a clean shutdown and automatically reboot
reboot () {
    touch /tmp/reboot
    sudo killall X
    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