[xmodmap] Add section to remap Super_R to Hyper_R

This commit is contained in:
Tom Willemse 2022-01-13 23:10:42 -08:00
parent 93bfb28d38
commit 976a2c7c28
3 changed files with 14 additions and 3 deletions

View file

@ -7,6 +7,9 @@ STOW=stow
all: $(MODULES) all: $(MODULES)
build:
mkdir build
clean: $(addsuffix -clean,$(MODULES)) clean: $(addsuffix -clean,$(MODULES))
zsh: zsh:
@ -45,13 +48,13 @@ emacs-install: emacs-stow
# Xmodmap # # Xmodmap #
########### ###########
xmodmap: Xmodmap/.Xmodmap xmodmap: build build/.Xmodmap
Xmodmap/.Xmodmap: Xmodmap/Xmodmap.org build/.Xmodmap: xmodmap/Xmodmap.org
$(call tangle,fundamental) $(call tangle,fundamental)
xmodmap-clean: xmodmap-clean:
rm -f Xmodmap/.Xmodmap rm -f build/.Xmodmap
######### #########
# Cower # # Cower #

View file

@ -12,3 +12,11 @@ Turn the right Alt (AltGr) into a regular Alt.
keycode 108 = Alt_L keycode 108 = Alt_L
add Mod1 = Alt_L add Mod1 = Alt_L
#+END_SRC #+END_SRC
Turn the right Super key into a Hyper key.
#+begin_src fundamental
remove mod4 = Super_R
keycode 134 = Hyper_R
add mod3 = Hyper_R
#+end_src