diff options
Diffstat (limited to 'testing/source/vtown/input-methods/ibus/ibus-autostart')
-rw-r--r-- | testing/source/vtown/input-methods/ibus/ibus-autostart | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/source/vtown/input-methods/ibus/ibus-autostart b/testing/source/vtown/input-methods/ibus/ibus-autostart new file mode 100644 index 00000000..4f274335 --- /dev/null +++ b/testing/source/vtown/input-methods/ibus/ibus-autostart @@ -0,0 +1,27 @@ +#!/bin/bash + +START="no" + +if [ "$XIM" = "ibus" ]; then + START="yes" +fi + +if [ "$XIM_PROGRAM" = "ibus" ]; then + START="yes" +fi + +if [ "$GTK_IM_MODULE" = "ibus" ]; then + START="yes" +fi + +if [ "$QT_IM_MOFULE" = "ibus" ]; then + START="yes" +fi + +if [ "$START" = "yes" ]; then + if [ "$1" = "--plasma" ]; then + ibus-daemon -drx --panel=/usr/libLIBDIRSUFFIX/kimpanel-ibus-panel + else + ibus-daemon -drx + fi +fi |