52495f2c74
- Upstream update to 1.5.30 * Fix Super key is not handled in GTK 4 applications * ui/gtk3: Fix SEGV with Super-space in Wayland * tools: Fix ibus start/restart in Plasma Wayland 5696033 * ui/gtk3: Fix ibus-daemon timeout in Plasma Wayland * ui/gtk3: Set Indicator status at launching time * Implement preedit color in Plasma Wayland * Implement ibus start/restart for Plasma Wayland * Show preferences menu item in activate menu * Fix control keys with game application * Fix typing freeze with barcode reader * Fix preedit issue with X applications * setup/enginedialog: Improve the search for engines - Refresh ibus-ui-gtk3-restart-via-systemd.patch - Drop patches merged by the upstream * ibus-complete-preedit-signals-for-postprocesskeyevent.patch * ibus-enginesimple-dont-commit-any-characters.patch OBS-URL: https://build.opensuse.org/request/show/1186022 OBS-URL: https://build.opensuse.org/package/show/M17N/ibus?expand=0&rev=290
16 lines
281 B
Bash
16 lines
281 B
Bash
#!/bin/sh
|
|
|
|
test x"$INPUT_METHOD" = x"ibus" || exit 0
|
|
|
|
# GNOME starts ibus by itself
|
|
case "$WINDOWMANAGER" in
|
|
*gnome*)
|
|
exit 0;;
|
|
esac
|
|
|
|
# sleep for a little while to avoid duplicate startup
|
|
# sleep 2
|
|
|
|
ibus start --service-file org.freedesktop.IBus.session.generic.service
|
|
exit 0
|