Created
July 16, 2014 19:08
-
-
Save willbprog127/0a2d8a366b3a0d43c421 to your computer and use it in GitHub Desktop.
.fluxbox - startup
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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