blob: e0b3d661c63ffc8230b33d9aeedad834823a8859 (
plain) (
tree)
|
|
# Read X resources
xrdb "$HOME"/.Xresources
# Faster mouse acceleration with a natural threshold
xset m 5/2 0
# Load all supplementary scripts in ~/.xinitrc.d
for sh in "$HOME"/.xinitrc.d/*.sh ; do
[ -e "$sh" ] && . "$sh"
done
unset -v sh
# Start window manager
exec i3
|