From 4aa8ad0033e5319248d11daf507deb0555a31899 Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Thu, 8 Sep 2022 00:41:45 -0500 Subject: [PATCH] Add ibus-daemon.service --- ibus-daemon.service | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 ibus-daemon.service diff --git a/ibus-daemon.service b/ibus-daemon.service new file mode 100644 index 0000000..3340a4a --- /dev/null +++ b/ibus-daemon.service @@ -0,0 +1,21 @@ +# this is a systemd service file for automatically starting ibus-daemon at boot + +# copy this file to ~/.config/systemd/user/ and execute +# systemctl enable --now --user ibus-daemon.-service + +[Unit] +Description=IBus Daemon +Documentation=man:ibus-daemon(1) +Conflicts=fcitx.service + +[Service] +Type=forking +ExecStart=/usr/bin/ibus-daemon -drx +ExecReload=/usr/bin/ibus restart +ExecStop=/usr/bin/ibus exit +Environment=GTK_IM_MODULE=ibus +Environment=XMODIFIERS="@im=ibus" +Environment=QT_IM_MODULE=ibus + +[Install] +WantedBy=default.target