Skip to content

Instantly share code, notes, and snippets.

@willbprog127
Created July 16, 2014 19:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willbprog127/0a2d8a366b3a0d43c421 to your computer and use it in GitHub Desktop.
Save willbprog127/0a2d8a366b3a0d43c421 to your computer and use it in GitHub Desktop.
.fluxbox - startup
#!/bin/sh
#
# fluxbox startup-script:
#
# Lines starting with a '#' are ignored.
# Change your keymap:
# xmodmap "/home/will/.Xmodmap"
# load X resources from .Xresources file
xrdb ~/.Xresources
# turn on numlock
numlockx > /dev/null 2>&1
# start screensaver
xscreensaver -nosplash &
# dim screen
xbrightness 35000 1.1 &
# set background
feh --bg-fill "/home/will/Pictures/backdrops/coos-bay-01.png" &
# start up policykit dialog daemon
/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1 &
# start quicklaunch bar
/home/will/apps/bin/bbbutton &
# 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/will/.fluxbox/log"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment