summarylogtreecommitdiffstats
path: root/ahm.install
diff options
context:
space:
mode:
Diffstat (limited to 'ahm.install')
-rw-r--r--ahm.install29
1 files changed, 0 insertions, 29 deletions
diff --git a/ahm.install b/ahm.install
deleted file mode 100644
index 6e140d7507d5..000000000000
--- a/ahm.install
+++ /dev/null
@@ -1,29 +0,0 @@
-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
-}