Created
May 18, 2016 02:39
-
-
Save bron84/226334fccf8f5e46c5d59195e6b3598d to your computer and use it in GitHub Desktop.
showAllInstalledApllications.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from objc_util import * | |
| appWorkspace = ObjCClass('LSApplicationWorkspace') | |
| default = (appWorkspace.defaultWorkspace) | |
| list = appWorkspace.defaultWorkspace() | |
| apps = list.allInstalledApplications() | |
| for app in apps: | |
| print(app) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment