14972986e3
This allows configuration for device specific settings - usually or perhaps exclusively hardware related. Supporting disabling laptop touchscreen, increasing laptop cursor speed, reversing the scroll direction of the laptop mouse.
22 lines
438 B
Bash
22 lines
438 B
Bash
#!/bin/sh
|
|
|
|
source ~/.profile
|
|
|
|
export DESKTOP_SESSION=cinnamon # gnome for trusty.
|
|
|
|
# NOTE: This may break your compose key.
|
|
# See http://g/i3-users/YBexXGbik7E for more details.
|
|
export GTK_IM_MODULE=xim
|
|
|
|
# Desktop background color.
|
|
xsetroot -solid "#333333"
|
|
|
|
# start the urxvt daemon
|
|
urxvtd -q -f -o
|
|
|
|
# set kbds
|
|
xmodmap -e 'remove Lock = Caps_Lock'
|
|
xmodmap -e 'keysym Caps_Lock = Escape'
|
|
|
|
# set key repeat preferences
|
|
xset r rate 250 60
|