slackbuilds_ponce/misc/ibus/profile.d/ibus.csh

18 lines
546 B
Tcsh
Raw Normal View History

2010-05-13 00:59:27 +02:00
#!/bin/csh
# ibus - Intelligent Input Bus for Linux / Unix OS. This is used to support the
# entering of text in non-US-English languages.
[ -x /usr/bin/ibus-daemon ]
if ($status == 0) then
# Enable legacy X applications to use ibus:
setenv XMODIFIERS "@im=ibus"
2010-05-13 00:59:27 +02:00
# Enable Qt/KDE applications to use ibus.
setenv QT_IM_MODULE "ibus"
2010-05-13 00:59:27 +02:00
# Enable GTK applications to use ibus:
setenv GTK_IM_MODULE "ibus"
2010-05-13 00:59:27 +02:00
# Make ibus start automatically if the "magic key" Ctrl-Space is pressed:
setenv XIM_PROGRAM "/usr/bin/ibus-daemon -xdrt"
2010-05-13 00:59:27 +02:00
endif