Add Xmodmap configuration
This commit is contained in:
parent
eb7b02d438
commit
a3021b6bdb
3 changed files with 21 additions and 0 deletions
14
Xmodmap/.Xmodmap.org
Normal file
14
Xmodmap/.Xmodmap.org
Normal file
|
@ -0,0 +1,14 @@
|
|||
Turn the mouse into a left-handed one (switch the left and right
|
||||
buttons).
|
||||
|
||||
#+BEGIN_SRC fundamental
|
||||
pointer = 3 2 1
|
||||
#+END_SRC
|
||||
|
||||
Turn the right Alt (AltGr) into a regular Alt.
|
||||
|
||||
#+BEGIN_SRC fundamental
|
||||
remove Mod5 = ISO_Level3_Shift
|
||||
keycode 108 = Alt_L
|
||||
add Mod1 = Alt_L
|
||||
#+END_SRC
|
1
Xmodmap/.gitignore
vendored
Normal file
1
Xmodmap/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
.Xmodmap
|
6
Xmodmap/GNUmakefile
Normal file
6
Xmodmap/GNUmakefile
Normal file
|
@ -0,0 +1,6 @@
|
|||
include ../dotfiles.mk
|
||||
|
||||
all: .Xmodmap
|
||||
|
||||
.Xmodmap: .Xmodmap.org
|
||||
$(call tangle,fundamental)
|
Loading…
Reference in a new issue