summarylogtreecommitdiffstats
path: root/ahm.install
diff options
context:
space:
mode:
Diffstat (limited to 'ahm.install')
-rw-r--r--ahm.install29
1 files changed, 29 insertions, 0 deletions
diff --git a/ahm.install b/ahm.install
new file mode 100644
index 000000000000..6e140d7507d5
--- /dev/null
+++ b/ahm.install
@@ -0,0 +1,29 @@
+post_upgrade() {
+ cat << EOF
+
+https://gitorious.org/at-home-modifier/at-home-modifier/blobs/raw/master/README
+
+First, know the keycodes you need, which are numbers assigned to each
+physical key. It's easiest to install and invoke "xev" commands. It
+says space is 65, and left shift is 50. Ok. Then write your xorg.conf:
+
+ Section "InputClass"
+ Identifier "my keyboard"
+ Driver "evdev"
+ Option "XKBOptions" "terminate:ctrl_alt_bksp" # and so on
+
+ # If you save this file under xorg.conf.d/ :
+ Option "AutoServerLayout" "on"
+
+ MatchIsKeyboard "on"
+ Option "TransMod" "65:50" # *** Look here ***
+ EndSection
+
+
+NEWS: More mouse support, read more at History/News section.
+EOF
+}
+
+post_install() {
+ post_upgrade
+}