14 lines
345 B
Bash
14 lines
345 B
Bash
#!/bin/bash
|
|
|
|
# load .Xresources for current X session
|
|
[[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources
|
|
|
|
# turn off annoying beep
|
|
xset b off
|
|
|
|
# change touchpad sensitivity (1st and 5th values of coord. transform. matrix)
|
|
xinput --set-prop 'SynPS/2 Synaptics TouchPad' 'Coordinate Transformation Matrix' 2.4 0 0 0 2.4 0 0 0 1
|
|
|
|
exec i3
|
|
|