source: trunk/debathena/debathena/kiosk/xinitrc @ 24842

Revision 24842, 2.1 KB checked in by jdreed, 14 years ago (diff)
Make failure a bit more user-friendly
Line 
1#!/bin/sh
2
3# This is the xinit script for the kiosk user.
4
5datadir=/usr/share/debathena-kiosk
6
7# The rkiosk extension's unique ID, and the location of its xpi file.
8rkiosk_id="{4D498D0A-05AD-4fdb-97B5-8A0AABC1FC5B}"
9rkiosk_xpi=$datadir/r-kiosk.xpi
10
11# File with preferences to set in the firefox profile.
12prefs="$datadir/prefs.js"
13
14# User chrome (UI customizations) file.
15chrome="$datadir/userChrome.css"
16
17cd || exit 1
18
19exec > xinit.log 2>&1
20
21XAUTHORITY=$HOME/.Xauthority
22export XAUTHORITY
23
24# Run a window manager so that firefox fullscreen mode works.
25metacity --sm-disable &
26
27choice=$(zenity --title="What would you like to do?" --text="Select the task y\
28ou wish to perform, then click \"OK\"" --list  --column="task" --column="Activ\
29ity" --hide-column=1 "reg" "Register for Account" "web" "Browse the Web")
30[ $? -eq 0 ] || exit 0
31if [ "$choice" = "reg" ]; then
32    errtext="An error occurred while trying to launch the registration applet.  Please try another workstation."
33    classzip="/afs/athena.mit.edu/system/register/java/regclasses.zip"
34    if [ ! -r "$classzip" ]; then
35        zenity --error --text="${errtext}\n\n(could not unzip class file)"
36        exit 0
37    fi
38    unzip $classzip
39    java -Dhost="moira.mit.edu" regapplet.Regapplet || zenity --error --text="${errtext}\n\n(could not launch java)"
40    exit 0
41fi
42
43# Create a new firefox profile.
44rm -rf .mozilla
45firefox -CreateProfile default > /dev/null || exit 1
46profdir=$(find .mozilla/firefox -type d -name \*.default)
47
48# Add the rkiosk extension.
49rkiosk_dir="$profdir/extensions/$rkiosk_id"
50mkdir -p "$rkiosk_dir"
51(cd "$rkiosk_dir" && unzip "$rkiosk_xpi") || exit 1
52cat <<EOF >> "$profdir/extensions.ini"
53[ExtensionDirs]
54Extension0=$rkiosk_dir
55EOF
56
57# Firefox 3.6+ requires a chrome.manifest for the extension.
58if [ ! -e "$rkiosk_dir/chrome.manifest" ]; then
59  cp "$datadir/chrome.manifest.r-kiosk" "$rkiosk_dir/chrome.manifest" || exit 1
60fi
61
62# Apply our preference settings and UI customizations.
63cat "$prefs" >> "$profdir/prefs.js" || exit 1
64cp "$chrome" "$profdir/chrome/userChrome.css" || exit 1
65
66# Launch firefox.
67firefox
68
69# Clean up.
70rm -rf .mozilla
Note: See TracBrowser for help on using the repository browser.