a776b3f99bf895a1d548f2d08fb060b4e6356380
[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 [ -x /usr/bin/fbsetbg ] && [ -r /usr/share/grml/desktop.jpg ] && \
15   fbsetbg -A /usr/share/grml/desktop.jpg &
16
17 ## END OF FILE #################################################################