Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
home:dirkmueller:acdc:sp5-rebuild
gnome-shell.16456
gnome-shell-disable-ibus-when-not-installed.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File gnome-shell-disable-ibus-when-not-installed.patch of Package gnome-shell.16456
From 29dfda2d2f77d14e27cc27cbba1e41ec0363cf83 Mon Sep 17 00:00:00 2001 From: Xiaoguang Wang <xwang@suse.com> Date: Thu, 9 Apr 2020 11:16:56 +0800 Subject: [PATCH] Disable ibus when out of CJK --- js/misc/ibusManager.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/js/misc/ibusManager.js b/js/misc/ibusManager.js index e43f88c..9d16f09 100644 --- a/js/misc/ibusManager.js +++ b/js/misc/ibusManager.js @@ -31,6 +31,10 @@ function getIBusManager() { var IBusManager = class { constructor() { + let daemon = Gio.File.new_for_path('/usr/bin/ibus-daemon'); + if (!daemon.query_exists(null)) + return; + IBus.init(); // This is the longest we'll keep the keyboard frozen until an input @@ -59,6 +63,10 @@ var IBusManager = class { } _spawn(extraArgs = []) { + let daemon = Gio.File.new_for_path('/usr/bin/ibus-daemon'); + if (!daemon.query_exists(null)) + return; + try { let cmdLine = ['ibus-daemon', '--panel', 'disable', ...extraArgs]; Gio.Subprocess.new(cmdLine, Gio.SubprocessFlags.NONE); -- 2.26.0
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor