Difference between revisions of "Kiosk display on a Mac Powerbook"
(→Setup) |
(→Setup) |
||
Line 58: | Line 58: | ||
</pre></code> | </pre></code> | ||
<br /> | <br /> | ||
+ | Then it's time to create a '''cron''' job that will run this script every 10 minutes. Run the command: | ||
+ | |||
+ | crontab -e | ||
+ | |||
+ | in the '''Termina''' window. | ||
+ | Add the following contents to the crontab list: | ||
+ | |||
+ | */10 * * * * /Users/newaccount/bin/updateMovie.sh | ||
+ | |||
+ | and exit the default editor. | ||
+ | |||
+ | <tanbox> | ||
+ | '''Note:''' If you want to the default editor to be emacs, simply set the '''EDITOR''' shell variable before issuing the ''crontab'' command:<br /<br /> <tt>export EDITOR=/usr/bin/emacs</tt><br /><br /> | ||
+ | </tanbox> | ||
<br /> | <br /> | ||
<br /> | <br /> |
Revision as of 12:48, 10 April 2013
--D. Thiebaut 10:37, 10 April 2013 (EDT)
A series of step to create a kiosk on a PowerBook mac.
Setup and Platforms
The idea is to have the Powerbook download a Quicktime movie from a server when a new version of it has been created, and automatically run it in a loop, full screen.
The mac used for displaying the endless loop is an old Powerbook PowerPC G4 running Mac OS X 10.5.8 that was collecting dust. It is connected to an external display.
The original .mov movie that is to be displayed is located a server, at a given URL, and the Powerbook will check regularly (in our case every 10 minutes) to see if that file has been recently updated. If it has been, the Powerbook uses wget (downloaded from here) to download the movie, and the Powerbook is restarted (automatically) so that Quicktime can restart with the new movie.
Account
The account under which everything runs on the Powerbook is "newccount", which has no password, and admin privileges.
Setup
- Install wget on the Powerbook.
- Using Systems Preferences, go to Users' and set newaccount to automatic login
- Load the first copy of the movie to play at startup in a loop in the Desktop folder, and call it DisplayCase.mov. This is also the name of the original movie file on the server.
- In the Users pane of the Systems Preference app, with newaccount selected, click on Login Items and put the movie DisplayCase.mov in the window. Do not click on the Hide box.
- Create a bin directory in the newaccount directory.
- Create the script updateMovie.sh with the following content:
#! /bin/bash
# D. Thiebaut
# script that will download movie from given url if it is more recent
# than local copy. If download is performed, the laptop is restarted
# so as to force Quicktime to stop and restart. The movie will automatically
# be played at login because it is in the "logins" list for the current account.
#
movie="DisplayCase.mov"
url="http://xxx.yyy.zzz/${movie}" # <== enter the URL of your movie here
wget="/usr/local/bin/wget"
cd ~/Desktop
# get creation time of local copy of movie
currentTimeStamp=`stat -f "%m%t%Sm" $movie`
# attempt to get newer version of movie from server
$wget -q -N $url
# get creation time of same movie file
newTimeStamp=`stat -f "%m%t%Sm" $movie`
# if creation times are different, a new version has been downloaded
# so we need to restart the system.
if [ "$currentTimeStamp" != "$newTimeStamp" ]; then
# restarting the Finder will restart the user newaccount...
osascript -e 'tell application "Finder" to restart'
fi
Then it's time to create a cron job that will run this script every 10 minutes. Run the command:
crontab -e
in the Termina window. Add the following contents to the crontab list:
*/10 * * * * /Users/newaccount/bin/updateMovie.sh
and exit the default editor.
Note: If you want to the default editor to be emacs, simply set the EDITOR shell variable before issuing the crontab command:<br /
export EDITOR=/usr/bin/emacs