Last active
August 29, 2020 22:06
-
-
Save loganlinn/2480641df1720efae8429c6c2af6e16e to your computer and use it in GitHub Desktop.
Removing macOS login item for Steam from the command-line using `osascript`
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
$ osascript -e 'tell application "System Events" to get the name of every login item' | |
Steam, Google Drive File Stream | |
$ osascript -e 'tell application "System Events" to delete login item "Steam"' | |
$ osascript -e 'tell application "System Events" to get the name of every login item' | |
Google Drive File Stream |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment