macos-gamemode
· 305 B · Text
Raw
Add these lines into de app plist:
```
<key>LSApplicationCategoryType</key>
<string>public.app-category.games</string>
<key>LSSupportsGameMode</key>
<true/>
```
Then cd where the app is located and run this command:
```
codesign -f -s - "Aplication.app"
```
Now the app opens in game mode
| 1 | Add these lines into de app plist: |
| 2 | ``` |
| 3 | <key>LSApplicationCategoryType</key> |
| 4 | <string>public.app-category.games</string> |
| 5 | <key>LSSupportsGameMode</key> |
| 6 | <true/> |
| 7 | ``` |
| 8 | Then cd where the app is located and run this command: |
| 9 | ``` |
| 10 | codesign -f -s - "Aplication.app" |
| 11 | ``` |
| 12 | |
| 13 | Now the app opens in game mode |