Last active
December 23, 2021 13:35
-
-
Save rickheil/af9d36f5177f0f5347586afbf69e1dca to your computer and use it in GitHub Desktop.
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>com.rickheil.disable-slack-auto-updates</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/bin/launchctl</string> | |
<string>setenv</string> | |
<string>SLACK_NO_AUTO_UPDATES</string> | |
<string>1</string> | |
</array> | |
<key>RunAtLoad</key> | |
<true/> | |
</dict> | |
</plist> |
@fintechestenberg the env variable may still work but I don't think is officially supported any longer and is a bit fiddly if i'm honest. The mobileconfig you linked is the supported method from Slack right now.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What is the diffrence between this approach and https://gist.github.com/rickheil/0ba04baf2bc0b49b7969a043cb81b336 ?
What is better?