This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.local/bin/remaps

24 lines
864 B
Plaintext
Raw Normal View History

2021-01-13 00:46:56 +01:00
#!/usr/bin/env sh
######################################################################
# @author : swytch (adapted from Luke Smith - lukesmith.xyz)
2021-01-13 00:46:56 +01:00
# @file : remaps
# @license : GPLv3
2021-01-13 00:46:56 +01:00
# @created : Wednesday Jan 13, 2021 00:41:18 CET
#
2021-02-12 23:23:25 +01:00
# @description : remap keys to others
2021-01-13 00:46:56 +01:00
######################################################################
# This script is called on startup to remap keys.
# Increase key speed via a rate change
xset r rate 300 50
# Map the caps lock key to ctrl...
setxkbmap -option ctrl:nocaps
2021-01-13 00:46:56 +01:00
# But when it is pressed only once, treat it as escape.
killall xcape 2>/dev/null ; xcape -e 'Control_L=Escape'
2021-01-13 00:46:56 +01:00
# Map the menu button to right super as well.
xmodmap -e 'keycode 107 = Super_R'
2021-01-13 00:46:56 +01:00
# Turn off the caps lock if on since there is no longer a key for it.
2021-01-14 00:21:54 +01:00
#xset -q | grep "Caps Lock:\s*on" && xdotool key Caps_Lock