summaryrefslogtreecommitdiffstats
path: root/misc/ibus/ibus-autostart
diff options
context:
space:
mode:
Diffstat (limited to 'misc/ibus/ibus-autostart')
-rw-r--r--misc/ibus/ibus-autostart23
1 files changed, 0 insertions, 23 deletions
diff --git a/misc/ibus/ibus-autostart b/misc/ibus/ibus-autostart
deleted file mode 100644
index 29fab3a050..0000000000
--- a/misc/ibus/ibus-autostart
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/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
- ibus-daemon -drx
-fi