Skip to content
This repository has been archived by the owner on May 28, 2022. It is now read-only.

Commit

Permalink
Update switcher.py
Browse files Browse the repository at this point in the history
In OSX Catalina (15.4) they have moved several apps to "/System/Applications/". Launch commands don't seem to work without changing line 74 accordingly.
  • Loading branch information
seanrhaney authored and dwiel committed May 27, 2020
1 parent 723aa29 commit b87be1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion misc/switcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def update_lists():
ctx.set_list("running", running.keys())

new = {}
for base in "/Applications", "/Applications/Utilities":
for base in "/Applications", "/Applications/Utilities","/System/Applications","/System/Applications/Utilities":
for name in os.listdir(base):
path = os.path.join(base, name)
name = name.rsplit(".", 1)[0]
Expand Down

0 comments on commit b87be1e

Please sign in to comment.