fix GUI notifications
see also https://github.com/hakavlad/nohang/issues/85#issuecomment-593066828
This commit is contained in:
parent
37807b4157
commit
72b1197aff
@ -229,7 +229,14 @@ def re_pid_environ(pid):
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
if i.startswith(display_env):
|
if i.startswith(display_env):
|
||||||
display = i[:10]
|
if i[-2] == '.':
|
||||||
|
# DISPLAY=:0.0 -> DISPLAY=:0
|
||||||
|
display = i[:-2]
|
||||||
|
else:
|
||||||
|
display = i
|
||||||
|
if len(display) > 10:
|
||||||
|
# skip DISPLAY >= :10
|
||||||
|
return None
|
||||||
continue
|
continue
|
||||||
|
|
||||||
if i.startswith(dbus_env):
|
if i.startswith(dbus_env):
|
||||||
|
Loading…
Reference in New Issue
Block a user