diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2013-03-16 08:49:37 -0700 |
---|---|---|
committer | Jesse Morgan <morganjm@amazon.com> | 2013-03-16 08:49:37 -0700 |
commit | 017fcf08f838cedd3bf97590bead45c4894ecfa1 (patch) | |
tree | 876e2af57e78788f1e6156f3484b137995febb10 /base/xsession | |
parent | c2af0507cfd21244440b6d6b05a6c46650401e00 (diff) |
Adding my base .xsession file.
Diffstat (limited to 'base/xsession')
-rw-r--r-- | base/xsession | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/base/xsession b/base/xsession new file mode 100644 index 0000000..d8db125 --- /dev/null +++ b/base/xsession @@ -0,0 +1,27 @@ +# Set my editor and terminal +export EDITOR=vim +export TERMINAL=urxvt + +# Some X Stuff +xsetroot -solid "#333333" +ulimit -c unlimited + +# Startup applications +/usr/lib/gnome-settings-daemon/gnome-settings-daemon & +/usr/lib/notification-daemon/notification-daemon & +(sleep 8; start-pulseaudio-x11) & +(sleep 60; update-notifier) & +(sleep 5; gnome-sound-applet) & +(sleep 5; nm-applet) & +(sleep 5; system-config-printer-applet) & +#eval $(gnome-keyring-daemon -s --components=pkcs11,secrets,ssh,gpg) & +(sleep 5; nitrogen --restore) & +gtk-theme-switch2 -i Ambiance +xrdb $HOME/.Xresources + +# Host Specific Settings +if [ -f ~/.host-specific/xession ]; then + source ~/.host-specific/xsession +fi + +exec i3 |