slackbuilds_ponce/misc/ibus/ibus-autostart
Heinz Wiesinger 7fdca74bde misc/ibus: Updated for version 1.5.16.
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
2017-10-11 06:20:01 +07:00

23 lines
292 B
Bash

#!/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