al-skel/home/.xprofile

31 lines
695 B
Plaintext
Raw Normal View History

# ~/.xprofile
# vim:ft=sh
2017-10-23 18:35:35 -05:00
# sourced at boot by both xinit and most display managers like lightdm
export XDG_CONFIG_HOME="$HOME/.config"
2018-05-18 22:36:34 -05:00
[ -d /sbin ] && PATH="$PATH:/sbin"
[ -d /usr/sbin ] && PATH="$PATH:/usr/sbin"
2018-05-18 22:36:34 -05:00
[ -d "$HOME/bin" ] && PATH="$HOME/bin:$PATH"
# restore the background
nitrogen --restore &
# keyring and polkit daemons
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
gnome-keyring-daemon --start --components=pkcs11 &
2018-08-29 20:59:42 -05:00
# pressing super alone simulates Alt-F1
ksuperkey -e 'Super_L=Alt_L|F1' &
ksuperkey -e 'Super_R=Alt_L|F1' &
# display timeout and sleep
2018-08-29 20:59:42 -05:00
xset s 1200 1300
xset dpms 1200 1300 1400
# keyboard repeat rate
kbdrate -d 400 -r 50
2018-08-29 20:59:42 -05:00
xset r rate 350 60