Release new version 0.3.12.
[grml-desktop.git] / etc / skel / .xinitrc.d / grml_startupinfo
1 #!/bin/sh
2 # Filename:      ~/.xinitrc.d/grml_startupinfo
3 # Purpose:       display startup information
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 ################################################################################
8
9 if [ "$XINIT_GRML_STARTUPINFO" = "false" ] ; then
10    exit 0
11 fi
12
13 if [ -x /usr/bin/osd_cat ] ; then
14    echo "Starting X window system and loading window manager..." | \
15    osd_cat -c white -A center -p middle -f "-misc-fixed-medium-r-normal-*-15-150-*-*-c-*-iso8859-15" &
16 fi
17
18 ## END OF FILE #################################################################