diff options
author | Denis Kozadaev <[email protected]> | 2020-01-30 22:13:12 +0300 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2020-03-02 23:40:36 +0100 |
commit | 54987baa2946868ae04e93090d4da5693afaa3b1 (patch) | |
tree | 6a989c0fb1d22986af268dcd240803f52a60b433 /dilos/tdebase/debian/80ubuntu-xmodmap | |
parent | 5593d90a563fc02f6baf3316388f13b9b8957cd0 (diff) | |
download | tde-packaging-54987baa2946868ae04e93090d4da5693afaa3b1.tar.gz tde-packaging-54987baa2946868ae04e93090d4da5693afaa3b1.zip |
DilOS: tdebase build pack
Signed-off-by: Denis Kozadaev <[email protected]>
(cherry picked from commit 042414011edfd405230b65e77e2b14870852760f)
Diffstat (limited to 'dilos/tdebase/debian/80ubuntu-xmodmap')
-rw-r--r-- | dilos/tdebase/debian/80ubuntu-xmodmap | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/dilos/tdebase/debian/80ubuntu-xmodmap b/dilos/tdebase/debian/80ubuntu-xmodmap new file mode 100644 index 000000000..fa60a4107 --- /dev/null +++ b/dilos/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 |