17 lines
446 B
Text
17 lines
446 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
|
|
|