69 lines
1.5 KiB
Plaintext
Raw Permalink Normal View History

2016-01-19 15:10:51 -06:00
#!/bin/sh
#
# fluxbox startup-script:
#
# Lines starting with a '#' are ignored.
# You can set your favourite wallpaper here if you don't want
# to do it from your style.
#
# fbsetbg -f /home/jdbernard/pictures/wallpaper.png
#
# This sets a black background
#/usr/bin/fbsetroot -solid black
# This shows the fluxbox-splash-screen
# fbsetbg -C /usr/share/fluxbox/splash.jpg
# 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/jdbernard/.fonts"
#
# Your favourite mouse cursor:
# xsetroot -cursor_name right_ptr
#
# Change your keymap:
xmodmap "/home/jdbernard/.Xmodmap"
# Applications you want to run with fluxbox.
# MAKE SURE THAT APPS THAT KEEP RUNNING HAVE AN ''&'' AT THE END.
#
source ~/.profile
xset +fp $HOME/.fonts
xrdb ~/.Xdefaults/standard
sleep 0.2s
gnome-settings-daemon &
gnome-keyring-daemon --start --components=ssh,secrets,pkcs11 &
sleep 0.2s
sync-now &
ng-start &
nm-applet &
gnome-sound-applet &
/opt/extras.ubuntu.com/touchpad-indicator/bin/touchpad-indicator &
#ng-start
2024-01-10 08:15:05 -06:00
conky &
2016-01-19 15:10:51 -06:00
st &
# Debian-local change:
# - fbautostart has been added with a quick hack to check to see if it
# exists. If it does, we'll start it up by default.
which fbautostart > /dev/null
if [ $? -eq 0 ]; then
fbautostart
fi
# And last but not least we start fluxbox.
# Because it is the last app you have to run it with ''exec'' before it.
exec fluxbox
# or if you want to keep a log:
# exec fluxbox -log "/home/jdbernard/.fluxbox/log"