2d301af845bcd6d77aa703f4f0dbd8ee37f77988
[openpandora.oe.git] / recipes / pandora-system / pandora-scripts / op_datetime.sh
1 #!/bin/sh
2
3 # Set the timezone and date/time
4
5 while mainsel=$(zenity --title="Date / Time / Timezone" --width="400" --height="250" --list --column "id" --column "Please select" --hide-column=1 --text="You can set the time and date or select a different timezone.\n" "td" "Change Time and Date" "tz" "Select Timezone" "sync" "Sync time over Internet" --ok-label="Change Setting" --cancel-label="Exit"); do
6
7
8 case $mainsel in
9
10   "tz")
11
12     while ! area=$(zenity --list --title "Select your time zone" --text="Please select your area" --column="Select your area" --print-column=1 "Africa" "America" "Asia" "Australia" "Europe" "Pacific" --width=500 --height=260) || [ "x$area" = "x" ] ; do
13           zenity --title="Error" --error --text="Please select your area." --timeout=6
14     done
15
16     while ! timezone=$(ls -1 /usr/share/zoneinfo/$area | zenity ---width=500 --height=200 --title="Select your closest location" --list --column "Closest Location" --text "Please select the location closest to you") || [ "x$timezone" = "x" ] ; do
17            zenity --title="Error" --error --text="Please select your location." --timeout=6
18     done
19
20     echo $timezone
21     rm /etc/localtime && ln -s /usr/share/zoneinfo/$area/$timezone /etc/localtime
22   ;;
23
24   "td")
25
26   #Make sure we clean up any leading zeros in the day (as Zenity freaks out)
27   date_d=`date +%d | sed 's/^0//'`
28   date_m=`date +%m | sed 's/^0//'`
29   date_y=`date +%Y`
30
31   date=""
32   while [ "x$date" = "x" ] ; do
33     date=$(zenity --calendar --text="Please select the current date" --title "Please select the current date" --day=$date_d --month=$date_m --year=$date_y --date-format="%Y%m%d" --width=500) || exit 1
34   done
35
36   echo $date
37
38   time_h=`date +%H`
39   time_m=`date +%M`
40
41   while true; do
42     time=$(zenity --title="Enter actual time" --entry --text "Please enter the time in 24hour format (HH:MM).\n" --entry-text "$time_h:$time_m") || exit 1
43     if test -n "$time" && date -d "$time"; then
44       break;
45     fi
46     zenity --title="Error" --error --text="Please input the time." --timeout 6
47   done
48
49   # take care of screensaver first
50   screensaver_enabled=true
51   if xset q | grep -A2 'Screen Saver' | grep -q 'timeout:.*\<0\>.*cycle'; then
52     screensaver_enabled=false
53   fi
54   xset s off
55
56   date +%Y%m%d -s $date
57   date +%H:%M -s $time
58   hwclock -u -w
59
60   if $screensaver_enabled; then
61     xset s on
62   fi
63   ;;
64   "sync")
65   (
66   test -e /etc/init.d/ntpd && sudo /etc/init.d/ntpd stop
67   sudo ntpdate pool.ntp.org
68   ) |
69         zenity --progress \
70         --title="Syncing..." \
71         --text="Syncing with time server...\nPlease wait a while..." \
72         --pulsate
73   test -e /etc/init.d/ntpd && sudo /etc/init.d/ntpd start
74   ;;
75 esac
76 done