161d27a8f1
with real settings to make the keybvoard usable: - US layout with Y and Z swapped - Kanji key as compose - Grave and asciitilde on the key they are actually printed on.
19 lines
605 B
Text
19 lines
605 B
Text
## Start Keyring-Daemon
|
|
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
|
|
export SSH_AUTH_SOCK
|
|
|
|
## Setup Keyboard
|
|
xmodmap -e 'keycode 49 = Multi_key' # Kanji-key
|
|
xmodmap -e 'keycode 132 = grave asciitilde' # grave-key
|
|
xmodmap -e 'keycode 29 = z Z z Z' # y-z
|
|
xmodmap -e 'keycode 52 = y Y y Y' # z-y
|
|
|
|
## Setup resources
|
|
xrdb -merge ~/.Xresources
|
|
test -f ~/.local/Xresources && xrdb -merge ~/.local/Xresources
|
|
echo Dark > ~/.local/themer.state
|
|
|
|
## Setup Screen
|
|
test -x ~/.screenlayout/.default && ~/.screenlayout/.default
|
|
test -x ~/.fehbg && ~/.fehbg
|
|
|