Skip to content

Instantly share code, notes, and snippets.

@NQNStudios
Last active August 29, 2015 14:08
Show Gist options
  • Save NQNStudios/e7451b75fde69d97bc58 to your computer and use it in GitHub Desktop.
Save NQNStudios/e7451b75fde69d97bc58 to your computer and use it in GitHub Desktop.
Scripts run on startup to customize my Xubuntu environment.
Scripts run on startup to customize my Xubuntu environment.
! swap caps lock and escape
remove Lock = Caps_Lock
keysym Escape = Caps_Lock
keysym Caps_Lock = Escape
add Lock = Caps_Lock
#!/bin/sh
xinput set-prop "SynPS/2 Synaptics TouchPad" "Synaptics Scrolling Distance" -108 -108
#!/bin/bash
# trackpad natural scrolling on laptop
if [ $(hostname) = 'DJMP3P0' ]; then
enable-natural-scrolling
fi
# remap caps lock to escape on all computers
xmodmap ~/bin/caps.xmodmap
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment