Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion scripts/keyd-application-mapper
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,9 @@ def get_monitor(on_window_change):
m = mon(on_window_change)
print(f'{name} detected')
return m
except:
except Exception as e:
dbg(f'Could not init {name}, try next app environment.')
dbg(e)
pass

print('Could not detect app environment :(.')
Expand Down