aboutsummaryrefslogtreecommitdiffstats
path: root/xmodmap/Xmodmap.org
blob: a13ac852ce72eb80f667531ee93e37bc31b1e6e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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

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