Created
February 2, 2012 00:01
-
-
Save theopak/1720265 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| # Source scripts in /etc/X11/xinit/xinitrc.d/ | |
| if [ -d /etc/X11/xinit/xinitrc.d ]; then | |
| for f in /etc/X11/xinit/xinitrc.d/*; do | |
| [ -x "$f" ] && . "$f" | |
| done | |
| unset f | |
| fi | |
| # initial user settings | |
| xsetroot -cursor_name left_ptr & | |
| xmodmap .Xmodmap & | |
| # start the tray and tray applications | |
| trayer --edge bottom --align right --SetDockType true --SetPartialStrut true --expand true --widthtype percent --width 5 --transparent true --alpha 1 --tint 0x000000 --heighttype pixel --height 19 & | |
| volwheel & | |
| wicd-gtk & | |
| tidybattery & | |
| # application preload | |
| google-chrome & | |
| # set the background | |
| feh --bg-fill .wallpaper.png & | |
| # start window manager | |
| exec ck-launch-session xmonad |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment