diff options
author | Michele Calgaro <[email protected]> | 2020-11-15 21:15:11 +0800 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2020-11-15 21:15:11 +0800 |
commit | 98095beb82f000d888dfa15bada80376c48df837 (patch) | |
tree | dadbf7de3432fa5cbf95c42733d19d5cf0508034 /dilos/core/tdebase/debian/80ubuntu-xmodmap | |
parent | f3d5de18f2bdf89d5923d560420ae23cac051cb8 (diff) | |
download | tde-packaging-98095beb82f000d888dfa15bada80376c48df837.tar.gz tde-packaging-98095beb82f000d888dfa15bada80376c48df837.zip |
DEB: adjusted to new 'core' folder for main packages.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'dilos/core/tdebase/debian/80ubuntu-xmodmap')
-rw-r--r-- | dilos/core/tdebase/debian/80ubuntu-xmodmap | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dilos/core/tdebase/debian/80ubuntu-xmodmap b/dilos/core/tdebase/debian/80ubuntu-xmodmap new file mode 100644 index 000000000..fa60a4107 --- /dev/null +++ b/dilos/core/tdebase/debian/80ubuntu-xmodmap @@ -0,0 +1,15 @@ +# Set the Ubuntu laptop keycode -> xkeysyms mapping (used by TDE) +# +# This file is sourced by Xsession(5), not executed. +# The "|| true" is to ensure that the Xsession script does not terminate on error + +USRMODMAP="$HOME/.Xmodmap" + +if [ -x /usr/bin/xmodmap ]; then + if [ -f /usr/share/apps/kxkb/ubuntu.xmodmap ]; then + /usr/bin/xmodmap /usr/share/apps/kxkb/ubuntu.xmodmap || true + fi + if [ -f "$USRMODMAP" ]; then + /usr/bin/xmodmap "$USRMODMAP" || true + fi +fi |