mirror of
https://github.com/SinTan1729/random.git
synced 2024-12-26 05:08:36 -06:00
10 lines
224 B
Bash
10 lines
224 B
Bash
#!/bin/sh
|
|
|
|
# this is a script to start the ibus-daemon on startup
|
|
# set it up to run automatically on startup somehow
|
|
|
|
export GTK_IM_MODULE=ibus
|
|
export QT_IM_MODULE=ibus
|
|
export XMODIFIERS=@im=ibus
|
|
sleep 10
|
|
ibus-daemon -drxR
|