-
Notifications
You must be signed in to change notification settings - Fork 2
/
xprofile
executable file
·39 lines (34 loc) · 917 Bytes
/
xprofile
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
# set key-repeat
xset r rate 400 75
# disable dpms
xset -dpms
# disable system bell
xset -b
# disable screensaver
xset s off
# set mouse speed
xset m 1/1 1
# fix for keepassx
# setxkbmap de
# make caps an additional esc
# if [ -s ~/.Xmodmap ]; then
# xmodmap ~/.Xmodmap
# fi
# disable Touchpad
synclient TouchpadOff=1
xmodmap -e "clear lock"
xmodmap -e "remove control = Control_L"
xmodmap -e "keycode 66 = Control_L"
xmodmap -e "add control = Control_L"
xmodmap -e "keycode 37 = Hyper_L"
# using xcape tool for ( and ) when shift right or left is pressed
xcape -e 'Shift_L=Shift_L|parenleft;Shift_R=Shift_R|parenright;Control_L=Escape'
# set the cursor-theme
xrdb ~/.Xresources &
# GNOME keyring
# eval $(/usr/bin/gnome-keyring-daemon --start --components=gpg,pkcs11,secrets,ssh)
export GPG_AGENT_INFO
export SSH_AUTH_SOCK
export GNOME_KEYRING_CONTROL
export SSH_AGENT_PID
export GNUPGHOME="${HOME}/.gnupg"