19 lines
602 B
Plaintext
19 lines
602 B
Plaintext
setxkbmap -option ctrl:nocaps
|
|
xmodmap ~/.xmodmap
|
|
xset mouse 5/0.1
|
|
xsetroot -cursor_name arrow
|
|
|
|
# .Xresources is managed by software (e.g. Puppet) whereas .Xresources-local
|
|
# may contain any system-specific configuration
|
|
xrdb -merge ~/.Xresources
|
|
test -f ~/.Xresources-local && xrdb -merge ~/.Xresources-local
|
|
|
|
# .xprofile is *not* managed by software (such as Puppet) and may therefore
|
|
# be used for system-specific configuration
|
|
test -f ~/.xprofile && source ~/.xprofile
|
|
|
|
# screensaver can be disabled by creating ~/.noscreensaver (not managed)
|
|
test -f ~/.noscreensaver || xscreensaver &
|
|
|
|
exec xmonad
|