Use fbsetbg to set wallpaper
[grml-etc.git] / etc / skel / .xinitrc
1 #!/bin/sh
2 # Filename:      ~/.xinitrc
3 # Purpose:       main configuration file of X startup
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 # configuration: by default all scripts from ~/.xinitrc.d are executed,
10 # but it's possible to configure this through a configuration file
11 if [ -r "$HOME/.config/${distri}/xinitrc" ] ; then
12   . "$HOME/.config/${distri}/xinitrc"
13 elif [ -r "$HOME/.config/grml/xinitrc" ] ; then
14   . "$HOME/.config/grml/xinitrc"
15 fi
16
17 # execute all existing scripts
18 for f in ~/.xinitrc.d/* ; do
19   "$f"
20 done
21
22 # default entry, use e.g. 'grml-x windowmanager' for changing or just adjust manually
23 exec /usr/bin/x-window-manager
24
25 ## END OF FILE #################################################################