summaryrefslogtreecommitdiffstats
path: root/remote/modules/german
diff options
context:
space:
mode:
authorJonathan Bauer2013-07-31 17:25:22 +0200
committerJonathan Bauer2013-07-31 17:25:22 +0200
commit91c66e022325637b577eb6f2d9046c1ce8b42d00 (patch)
tree34473e1e83e781ed8a8ab6ffa43c167cf8b194ac /remote/modules/german
parentrestructuring (diff)
downloadtm-scripts-91c66e022325637b577eb6f2d9046c1ce8b42d00.tar.gz
tm-scripts-91c66e022325637b577eb6f2d9046c1ce8b42d00.tar.xz
tm-scripts-91c66e022325637b577eb6f2d9046c1ce8b42d00.zip
restructing
Diffstat (limited to 'remote/modules/german')
-rwxr-xr-xremote/modules/german/data/opt/openslx/bin/load_german_keymaps22
1 files changed, 0 insertions, 22 deletions
diff --git a/remote/modules/german/data/opt/openslx/bin/load_german_keymaps b/remote/modules/german/data/opt/openslx/bin/load_german_keymaps
deleted file mode 100755
index c7dbbb33..00000000
--- a/remote/modules/german/data/opt/openslx/bin/load_german_keymaps
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-# Script serves as container script for a systemd-call due to the buggyness of several
-# loadkeys-implementations <= kbd (Linux keyboard tools) 1.15.3.
-# This bug can be detected through failure of the command pipe 'dumpkeys|loadkeys' yielding
-# the message "unknown keysym 'compose'.
-
-# So we first try to insert a keymap including compose-lines:
-loadkeys /opt/openslx/keymaps/german_qwertz_compose_keyboard_translation.map
-ERR=$?
-
-# ... if this fails we enter a keymap without compose-lines:
-if [[ "$ERR" -eq 0 ]]; then
- exit 0 # in that case everything went smooth - exit.
-else
- loadkeys /opt/openslx/keymaps/german_qwertz_keyboard_translation.map # insert a keymap without compose lines
- ERR=$?
-fi
-
-# if at this point the second keymap insertion failed we pass the errorlevel to
-# systemd - we cannot do more at this point.
-
-exit $ERR