fix detection of whether or not ibus is running
This commit is contained in:
parent
aefaad75a9
commit
6738199e0f
|
@ -57,7 +57,7 @@ if __name__ == '__main__':
|
||||||
# Environment also needs IBUS_DISABLE_SNOOPER=1, or double chars appear
|
# Environment also needs IBUS_DISABLE_SNOOPER=1, or double chars appear
|
||||||
# in the receivers.
|
# in the receivers.
|
||||||
username = pwd.getpwuid(os.getuid()).pw_name
|
username = pwd.getpwuid(os.getuid()).pw_name
|
||||||
ibus_running = [p for p in psutil.process_iter() if p.name == 'ibus-daemon' and p.username == username]
|
ibus_running = [p for p in psutil.process_iter() if p.name() == 'ibus-daemon' and p.username() == username]
|
||||||
ibus_running = len(ibus_running) > 0
|
ibus_running = len(ibus_running) > 0
|
||||||
if ibus_running:
|
if ibus_running:
|
||||||
os.environ['IBUS_DISABLE_SNOOPER']='1'
|
os.environ['IBUS_DISABLE_SNOOPER']='1'
|
||||||
|
|
Loading…
Reference in New Issue