File: startup - Tab length: 1 2 4 8 - Lines: on off - No wrap: on off

01: #!/bin/sh
02: #
03: # fluxbox startup-script:
04: #
05: # Lines starting with a '#' are ignored.
06: 
07: # Change your keymap:
08: xmodmap "/home/folco/.Xmodmap"
09: 
10: # Applications you want to run with fluxbox.
11: # MAKE SURE THAT APPS THAT KEEP RUNNING HAVE AN ''&'' AT THE END.
12: #
13: # unclutter -idle 2 &
14: # wmnd &
15: # wmsmixer -w &
16: # idesk &
17: #
18: # Debian-local change:
19: #   - fbautostart has been added with a quick hack to check to see if it
20: #     exists. If it does, we'll start it up by default.
21: which fbautostart > /dev/null
22: if [ $? -eq 0 ]; then
23:     fbautostart
24: fi
25: 
26: # KDE mixer
27: kmix &
28: 
29: # And last but not least we start fluxbox.
30: # Because it is the last app you have to run it with ''exec'' before it.
31: exec fluxbox
32: # or if you want to keep a log:
33: # exec fluxbox -log "/home/folco/.fluxbox/log"