Add Notion to shared apps
9
votes
Simone Pignotti
shared this idea
-
Simone Pignotti commented
Just one important catch: unfortunately, due to a very bad design choice by Notion's team, the app only works if users have write access to its directory. I solved this in my custom app using the following after install script:
```
#!/bin/bashchown -R root:staff /Applications/Notion.app
chmod -R g+w /Applications/Notion.app
```