mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
24 lines
292 B
Text
24 lines
292 B
Text
|
#!/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
|