pandora-scripts / gui.conf: Added new stop command for minimenu (fixes wrong settings...
[openpandora.oe.git] / recipes / pandora-system / pandora-scripts / op_startupmanager.sh
1 #!/bin/bash
2 # Released under the GPL
3 # Startup-Manager, v1.0, written by Michael Mrozek aka EvilDragon 2010 with some help by vimacs.
4 # This scripts allows you to change various settings of the Pandora startup process.
5
6 while mainsel=$(zenity --title="Startupmanager" --width="400" --height="250" --list --column "id" --column "Please select" --hide-column=1 --text="What do you want to do?" "gui" "Change Default GUI for current user" "login" "Enable/Disable Autologin" "user" "Select default user" "wifi" "Enable/Disable WiFi on Boot"); do
7
8 case $mainsel in
9
10 # Change default GUI
11   "gui")
12     user2=$(cat /tmp/currentuser)
13     selection=$(cat /etc/pandora/conf/gui.conf | awk -F\; '{print $1 "\n" $2 }' | zenity ---width=500 --height=300 --title="Change the Default GUI" --list --column "Name" --column "Description" --text "Please select the GUI you want to run as default startup" )
14     echo $selection
15
16     gui=$(grep $selection /etc/pandora/conf/gui.conf | awk -F\; '{print $3}')
17
18     if [ $gui ]; then 
19       sed -i "s/.*DEFAULT_SESSION=.*/DEFAULT_SESSION=$gui/g" /home/$user2/.xinitrc
20       zenity --info --title="Changed session" --text "The default session has been changed to $selection." --timeout 6
21     fi;;
22
23 # Enable / Disable Autologin 
24    "login")
25       if zenity --question --title="Autologin" --text="Do you wish to automatically login at startup?\n\nSecurity warning: This skips the password check on startup" --ok-label="Yes" --cancel-label="No"; then         
26         sed -i 's/.*auto_login.*/auto_login yes/g' /etc/slim.conf
27         zenity --info --title="Changed Autologin" --text "Autologin is now enabled." --timeout 6
28       else
29         sed -i 's/.*auto_login.*/auto_login no/g' /etc/slim.conf
30         zenity --info --title="Changed Autologin" --text "Autologin is now disabled." --timeout 6
31       fi;;
32
33 # Select default user
34     "user")
35        if username=$(cat /etc/passwd | grep /home/ | grep -v root | awk -F\: '{print $1 }' | zenity --width=100 --height=200 --title="Select the default user" --list  --column "Username"  --text "Please select the default user\nor press Cancel to disable a default user.") ; then
36          sed -i "s/.*default_user.*/default_user $username/g" /etc/slim.conf
37          zenity --info --title="Changed Default User" --text "The default user is now $username." --timeout 6
38        else
39         echo
40         sed -i "s/.*default_user.*/default_user/g" /etc/slim.conf
41         zenity --info --title="Changed Default User" --text "The default user disabeled" --timeout 6
42        fi;;
43
44 # Enable / Disable WiFi on boot
45      "wifi")
46       if zenity --question --title="Start WiFi on Bootup" --text="Do you wish to automatically start the WiFi driver on bootup?" --ok-label="Yes" --cancel-label="No"; then             
47          ln -s ../init.d/wl1251-init /etc/rc5.d/S30wl1251-init
48          ln -s ../init.d/wl1251-init /etc/rc2.d/S30wl1251-init
49          zenity --info --title="Changed WiFi startup" --text "WiFi on boot is now enabled." --timeout 6
50       else
51          rm /etc/rc2.d/S30wl1251-init
52          rm /etc/rc5.d/S30wl1251-init
53          zenity --info --title="Changed WiFi startup" --text "WiFi on boot is now disabled." --timeout 6
54       fi;;
55 esac
56 done