Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save hickVieira/5af002bb30b29fdedf5b5d1294048094 to your computer and use it in GitHub Desktop.
Save hickVieira/5af002bb30b29fdedf5b5d1294048094 to your computer and use it in GitHub Desktop.
#!/bin/bash
echo "Running startup.sh"
# Wait 5 seconds
sleep 5
# Keycodes:
# KP_HOME 110
# KP_END 115
# Prior 112
# Next 117
# Remap Home to Page Up
xmodmap -e "keycode 110 = Prior"
# Remap End to Page Down
xmodmap -e "keycode 115 = Next"
# Remap Page Down to Home
xmodmap -e "keycode 112 = Home"
# Remap Page Up to End
xmodmap -e "keycode 117 = End"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment