9955624c3a91e7ecebd08cd43f5a3d2434c033ef
[pandora-libraries.git] / testdata / scripts / op_menu.sh
1 #!/bin/bash
2 #actions done when the menu button is pressed
3 #only argument is the time the button was pressed in  seconds
4
5 if [ "$1" -ge "1" ]; then #button was pressed 3 sec or longer, show list of apps to kill instead of launcher
6   killist=y
7 fi
8
9 xpid=$(pidof X)
10 if [ $xpid ]; then
11   echo "x is running"
12   xfceuser=$(ps u -C xfce4-session | tail -n1 | awk '{print $1}')
13   if [ $killist ]; then
14     echo "displaying kill list"
15     pidlist=$(pstree -lpA | grep pnd_run.sh | sed -ne 's/.*-\(.*\)(\([0-9]\+\))/\2\n \1/p' | su -c 'DISPLAY=:0.0 zenity --list --multiple --column "pid" --column "name" --title "kill" --text "which apps should be killed"' - $xfceuser | sed 's/|/\n/')
16     for PID in $pidlist
17     do
18       kill -9 $PID
19     done
20   else
21     echo "starting appfinder"
22     su -c 'DISPLAY=:0.0 xfce4-appfinder' - $xfceuser
23   fi
24 else
25   echo "no x, killing all pnd aps so x gets restarted"
26   pidlist=$(pstree -lpA | grep pnd_run.sh | sed -ne 's/.*(\([0-9]\+\))/\1/p')
27   for PID in $pidlist
28   do
29     kill -9 $PID
30   done
31 fi