diff options
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | extra/osx/Alacritty.app/Contents/Info.plist | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index b5abc0a2..f17ddaf1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Packaging - The xclip dependency has been removed +- On macOS, Alacritty now requests NSSystemAdministrationUsageDescription to + avoid permission failures ### Added diff --git a/extra/osx/Alacritty.app/Contents/Info.plist b/extra/osx/Alacritty.app/Contents/Info.plist index 5cfdea9b..cdf0062b 100644 --- a/extra/osx/Alacritty.app/Contents/Info.plist +++ b/extra/osx/Alacritty.app/Contents/Info.plist @@ -52,5 +52,7 @@ <string>An application in Alacritty would like to access your microphone.</string> <key>NSRemindersUsageDescription</key> <string>An application in Alacritty would like to access your reminders.</string> + <key>NSSystemAdministrationUsageDescription</key> + <string>An application in Alacritty requires elevated permissions.</string> </dict> </plist> |