Originally written in January 2021.
Originally written for macOS Big Sur 11.1
Board used for this guide is the Kickstarter version.
Version at the time of writing is 1.8.13
| ;~Check mouse position every second. | |
| SetTimer, MousePos, 1000 | |
| MousePos: | |
| MouseGetPos, x, y | |
| return | |
| ~LButton:: | |
| TimeL := A_TickCount | |
| Return |
| # 1. Run 'adb devices' when connected to a phone with USB debugging enabled. | |
| # 2. Run 'adb shell' to start the interactive shell | |
| # 3. List the full package names for the apps/games to be muted | |
| cmd package list packages | grep -i -E ‘frozen|pies|color’ | |
| # 4. Mute apps with appops commands (replace package names): | |
| # Example 1 - Mute | |
| cmd appops set com.easybrain.art.puzzle TAKE_AUDIO_FOCUS ignore | |
| cmd appops set com.easybrain.art.puzzle PLAY_AUDIO deny |
Originally written in January 2021.
Originally written for macOS Big Sur 11.1
Board used for this guide is the Kickstarter version.
Version at the time of writing is 1.8.13