blob: 5b20582641605da10015a3227bc0f6a6d3aae445 (
plain) (
blame)
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
|
# Dropbox
dropbox start &
# GNOME to provide default programs
export DE='gnome'
# GNOME settings daemon
nohup gnome-settings-daemon -r & >/dev/null
# Background image
setbg &
# GPG agent
envfile="$HOME/.gnupg/gpg-agent.env"
if [[ -e "$envfile" ]] && kill -0 $(grep GPG_AGENT_INFO "$envfile" | cut -d: -f 2) 2>/dev/null; then
eval "$(cat "$envfile")"
else
eval "$(gpg-agent --daemon --enable-ssh-support --write-env-file "$envfile")"
fi
export GPG_AGENT_INFO # the env file does not contain the export statement
export SSH_AUTH_SOCK # enable gpg-agent for ssh
xrdb ~/.Xresources
setxkbmap "us(intl),us(dvorak-intl),ru(phonetic),il(biblicalSIL)" -option grp:shift_caps_toggle
# WM
exec /etc/alternatives/x-window-manager
|