blob: fdcb3fb5732ec90655a0e758cf6984fd1a9ab667 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Set my editor and terminal
export TERMINAL=urxvtc
export EDITOR=vim
export LANG=en_US.utf8
export LC_ALL=en_US.utf8
if [ -f ~/.shell_pathes ]; then
source ~/.shell_pathes
fi
# Host Specific Settings
if [ -f ~/.host-specific/shell_pathes ]; then
source ~/.host-specific/shell_pathes
fi
# Some X Stuff
xsetroot -solid "#333333"
ulimit -c unlimited
# Startup applications
/usr/lib/deja-dup/deja-dup/deja-dup-monitor &
/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) &
(sleep 5; nitrogen --restore) &
gtk-theme-switch2 -i Ambiance
xrdb $HOME/.Xresources
source $HOME/.gpg-agent-info
export GPG_AGENT_INFO
export SSH_AUTH_SOCK
export SSH_AGENT_PID
# Host Specific Settings
if [ -f $HOME/.host-specific/xsession ]; then
source $HOME/.host-specific/xsession
fi
# Start terminal daemon
urxvtd -f -o
# Make the i3 config
make_i3_config > $HOME/.config/i3/config
if [ -x ~/dev/i3/i3 ]; then
exec ~/dev/i3/i3
else
exec i3
fi
|