From 7a32c185228c224d5593a159d4c357d22b919df3 Mon Sep 17 00:00:00 2001 From: Sebastian Schmelzer Date: Tue, 7 Apr 2009 20:25:39 +0000 Subject: add kiosk & infoscreen plugin to trunk git-svn-id: http://svn.openslx.org/svn/openslx/openslx/trunk@2810 95ad53e4-c205-0410-b2fa-d234c58c8868 --- os-plugins/plugins/infoscreen/XX_infoscreen.sh | 58 ++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 os-plugins/plugins/infoscreen/XX_infoscreen.sh (limited to 'os-plugins/plugins/infoscreen/XX_infoscreen.sh') diff --git a/os-plugins/plugins/infoscreen/XX_infoscreen.sh b/os-plugins/plugins/infoscreen/XX_infoscreen.sh new file mode 100644 index 00000000..e2176387 --- /dev/null +++ b/os-plugins/plugins/infoscreen/XX_infoscreen.sh @@ -0,0 +1,58 @@ +# Copyright (c) 2009 - OpenSLX GmbH +# +# This program/file is free software distributed under the GPL version 2. +# See http://openslx.org/COPYING +# +# If you have any feedback please consult http://openslx.org/feedback and +# send your feedback to feedback@openslx.org +# +# General information about OpenSLX can be found at http://openslx.org +# +# script is included from init via the "." load function - thus it has all +# variables and functions available + +# check if the plugin config directory is generally available or if the client +# configuration failed somehow +[ -d /initramfs/plugin-conf ] || error "${init_picfg}" nonfatal + +# main script +if [ -e /initramfs/plugin-conf/infoscreen.conf ]; then + . /initramfs/plugin-conf/infoscreen.conf + + if [ $infoscreen_active -ne 0 ]; then + [ $DEBUGLEVEL -gt 0 ] && echo "executing the 'infoscreen' os-plugin ..."; + + ln -sf /opt/openslx/plugin-repo/infoscreen/kiosk.dpms \ + /mnt/bin/kiosk.dpms + + # prepare xsession + echo "#!/bin/bash" \ + > /mnt/home/kiosk/.xinitrc + echo "xhost +local:" \ + >> /mnt/home/kiosk/.xinitrc + echo "xsetroot -cursor /opt/openslx/plugin-repo/infoscreen/empty.xbm \\" \ + >> /mnt/home/kiosk/.xinitrc + echo "/opt/openslx/plugin-repo/infoscreen/empty.xbm" \ + >> /mnt/home/kiosk/.xinitrc + echo "/usr/bin/dpclient" \ + >> /mnt/home/kiosk/.xinitrc + + # remove Standby + sed -r "s,(Option.*\"(Blank|Standby|Suspend|Off)Time\"[^\"]*)(.*),\1 \"0\" # disabled by infoscreen \3," \ + -i /mnt/etc/X11/xorg.conf + sed -r "s,(Option.*\"(blank|standby|suspend|off) time\"[^\"]*)(.*),\1 \"0\" # disabled by infoscreen \3," \ + -i /mnt/etc/X11/xorg.conf + + # energy safe + # (requires "xhost +local:") + sed -r "s,(Section \"Module\"),\1\n Load \"dpms\"," -i /mnt/etc/X11/xorg.conf + echo "0 22 * * * root /bin/kiosk.dpms sleep" >> /mnt/etc/crontab + echo "0 7 * * * root /bin/kiosk.dpms wakeup" >> /mnt/etc/crontab + + + + [ $DEBUGLEVEL -gt 0 ] && echo "done with 'infoscreen' os-plugin ..."; + + fi + +fi -- cgit v1.2.3-55-g7522