fix detection of whether or not ibus is running

This commit is contained in:
Matt Rose 2020-06-03 14:44:19 -04:00
parent aefaad75a9
commit 6738199e0f
1 changed files with 1 additions and 1 deletions

View File

@ -57,7 +57,7 @@ if __name__ == '__main__':
# Environment also needs IBUS_DISABLE_SNOOPER=1, or double chars appear
# in the receivers.
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
if ibus_running:
os.environ['IBUS_DISABLE_SNOOPER']='1'