1aef89f7cb69ae9ca747a0572d093694566d6d36
[grml-etc.git] / etc / skel / .xinitrc.d / grml_wallpaper
1 #!/bin/sh
2 # Filename:      ~/.xinitrc.d/grml_wallpaper
3 # Purpose:       set wallpaper
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_WALLPAPER" = "false" ] ; then
10    exit 0
11 fi
12
13 # set wallpaper
14 # wmsetbg -t /usr/share/grml/desktop.png &
15   if [ -x /usr/bin/Esetroot ] ; then
16      [ -r /usr/share/grml/desktop.jpg ] && Esetroot -scale /usr/share/grml/desktop.jpg &
17   fi
18
19 ## END OF FILE #################################################################