You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Modifying && Saving wayfire.ini is causing watch_events() to stop receiving IPC events. It’s possible that wayfire is unnecessarily reloading IPC plugins when changes are made to the configuration, which could be disrupting the event flow.
def watch_events():
sock.watch()
while True:
msg = sock.read_message()
print(msg)
Expected behavior: watch_events() should continue reading and printing messages after changes are made to wayfire.ini.
Current behavior: After modifying and saving wayfire.ini, the function stops reading messages.
The text was updated successfully, but these errors were encountered:
Modifying && Saving wayfire.ini is causing watch_events() to stop receiving IPC events. It’s possible that wayfire is unnecessarily reloading IPC plugins when changes are made to the configuration, which could be disrupting the event flow.
Expected behavior: watch_events() should continue reading and printing messages after changes are made to wayfire.ini.
Current behavior: After modifying and saving wayfire.ini, the function stops reading messages.
The text was updated successfully, but these errors were encountered: