2017-04-03 22:18:24 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# fluxbox startup-script:
|
|
|
|
#
|
|
|
|
# Lines starting with a '#' are ignored.
|
|
|
|
|
|
|
|
# Transparency
|
|
|
|
xcompmgr -c &
|
|
|
|
|
|
|
|
# Screensaver
|
|
|
|
xscreensaver -no-splash &
|
|
|
|
|
|
|
|
# Background
|
|
|
|
fbsetbg -a `tail -n 1 .fluxbox/lastwallpaper|cut -d'|' -f 2`
|
|
|
|
|
2017-05-22 22:52:36 +02:00
|
|
|
# Applets
|
|
|
|
blueman-applet&
|
|
|
|
pasystray &
|
2017-04-03 22:18:24 +02:00
|
|
|
nm-applet &
|
|
|
|
|
|
|
|
# Disable bell
|
|
|
|
xset -b
|
|
|
|
|
|
|
|
# Defaults Apps
|
|
|
|
spotify &
|
|
|
|
brscan-skey &
|
2017-05-22 22:52:36 +02:00
|
|
|
owncloud &
|
2017-04-03 22:18:24 +02:00
|
|
|
|
|
|
|
# SSH
|
|
|
|
ssh-add &
|
|
|
|
|
|
|
|
which fbautostart > /dev/null
|
|
|
|
if [ $? -eq 0 ]; then
|
|
|
|
fbautostart
|
|
|
|
fi
|
|
|
|
|
|
|
|
exec fluxbox
|