fluxbox/util/startfluxbox.in

85 lines
1.9 KiB
Text
Raw Normal View History

2003-09-07 19:51:59 +00:00
#!/bin/sh
command="`basename \"$0\"`"
fluxdir="$HOME/.@pkgprefix@fluxbox@pkgsuffix@"
startup="$fluxdir/startup"
while [ $# -gt 0 ]; do
case "$1" in
-c|--config)
if [ $# -lt 2 ]; then
echo "$command:error, missing argument"
exit 1
fi
shift
startup=$1
;;
-h|--help) cat <<EOF
Usage: $command [-h] [-c startupfile]
EOF
exit
;;
esac
shift
done
if [ -x "$startup" ]; then
exec "$startup"
elif [ -r "$startup" ]; then
exec sh "$startup"
2003-09-07 19:51:59 +00:00
else
if [ ! -d $fluxdir ]; then
mkdir -p "$fluxdir/backgrounds" "$fluxdir/styles" "$fluxdir/pixmaps"
2003-09-07 19:51:59 +00:00
fi
if [ ! -r "$startup" ]; then
( cat << EOF
2003-12-06 16:29:21 +00:00
# fluxbox startup-script:
#
# Lines starting with a '#' are ignored.
# This sets a black background
@pkgprefix@fbsetroot@pkgsuffix@ -solid black
2003-12-06 16:29:21 +00:00
# You can set your favourite wallpaper here. You will also need to uncomment the
# line in $HOME/.@pkgprefix@fluxbox@pkgsuffix@/overlay or else your style will override it.
#
# @pkgprefix@fbsetbg@pkgsuffix@ -f $HOME/.@pkgprefix@fluxbox@pkgsuffix@/backgrounds/wallpaper.png
2003-12-06 16:29:21 +00:00
# Other examples. Check man xset for details.
#
# Turn off beeps:
# xset -b
#
# Increase the keyboard repeat-rate:
# xset r rate 195 35
#
# Your own fonts-dir:
# xset +fp "$HOME/.fonts"
2003-12-06 16:29:21 +00:00
#
# Change your keymap:
# xmodmap "$HOME/.Xmodmap"
2003-12-06 16:29:21 +00:00
# Applications you want to run with fluxbox.
# MAKE SURE THAT APPS THAT KEEP RUNNING HAVE AN ''&'' AT THE END.
#
# unclutter -idle 2 &
# wmnd &
# wmsmixer -w &
# idesk &
# And last but not least we start fluxbox.
# Because it is the last app you have to run it with ''exec'' before it.
exec @pkgbindir@/@pkgprefix@fluxbox@pkgsuffix@
2003-12-06 16:29:21 +00:00
# or if you want to keep a log:
# exec @pkgbindir@/@pkgprefix@fluxbox@pkgsuffix@ -log "$fluxdir/log"
2003-12-06 16:29:21 +00:00
EOF
) > "$startup"
2003-12-06 16:29:21 +00:00
fi
chmod 644 "$startup"
exec sh "$startup"
2003-09-07 19:51:59 +00:00
fi