20 lines
493 B
Text
20 lines
493 B
Text
## Start Keyring-Daemon
|
|
#eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
|
|
#export SSH_AUTH_SOCK
|
|
|
|
## Import exports
|
|
source ~/.exports
|
|
|
|
## Setup Keyboard
|
|
xmodmap -e 'keycode 135 = Multi_key' # remaps context-menu-key to Compose
|
|
|
|
## Setup resources
|
|
test -f ~/.local/Xresources && xrdb -merge ~/.local/Xresources
|
|
|
|
## Setup Screen
|
|
test -x ~/.screenlayout/.default && ~/.screenlayout/.default
|
|
test -x ~/.fehbg && ~/.fehbg
|
|
|
|
## Add fonts
|
|
xset fp+ /usr/share/fonts/3270
|
|
|