From eb174df866e5fde91cb2bd2869faef41ac7ab9b5 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Fri, 27 Apr 2018 11:17:46 +0100 Subject: [PATCH] dot/profile: Persuade Gtk and QT programs to use X compose sequences. Organization: Straylight/Edgeware From: Mark Wooding Without this, apparently, they use (different!) built-in hardwired mappings. This is crazy. The XIM sequences are user-editable and everything. --- dot/profile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dot/profile b/dot/profile index d9baf4b..925127d 100644 --- a/dot/profile +++ b/dot/profile @@ -257,6 +257,10 @@ OOO_FORCE_DESKTOP=gnome; export OOO_FORCE_DESKTOP ## Hack Qt-ish things to be unstoatly. QT_STYLE_OVERRIDE=gtk2; export QT_STYLE_OVERRIDE +## Use X11 input method (including compose key sequences) everywhere. +GTK_IM_MODULE=xim; export GTK_IM_MODULE +QT_IM_MODULE=xim; export QT_IM_MODULE + ## Configure `ps'. PS_PERSONALITY=gnu; export PS_PERSONALITY -- [mdw]