From c36296f2a0ff1eece3036d8ec0697d88226217fa Mon Sep 17 00:00:00 2001 From: ylluminate Date: Sun, 11 Jul 2021 14:57:55 -0400 Subject: [PATCH 1/3] Update TCC modification in ACCEL.md for Big Sur --- docs/ACCEL.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/ACCEL.md b/docs/ACCEL.md index 697330f7d..ca5446d3b 100644 --- a/docs/ACCEL.md +++ b/docs/ACCEL.md @@ -41,6 +41,17 @@ chmod +x tccplus ./tccplus add Microphone com.hnc.Discord ``` +In Big Sur currently `tccplus` and like utilities no longer work and this requires something more along the lines of this: +```sh +# get app id (Zoom.us used in example): +$ osascript -e 'id of app "zoom.us"' +# output: us.zoom.xos + +$ sudo sqlite3 ~/Library/Application\ Support/com.apple.TCC/TCC.db "INSERT or REPLACE INTO access VALUES('kTCCServiceMicrophone','us.zoom.xos',0,2,0,1,NULL,NULL,NULL,'UNUSED',NULL,0,1541440109);" + +$ sudo sqlite3 ~/Library/Application\ Support/com.apple.TCC/TCC.db "INSERT or REPLACE INTO access VALUES('kTCCServiceCamera','us.zoom.xos',0,2,0,1,NULL,NULL,NULL,'UNUSED',NULL,0,1541440109);" +``` + ## Keyboard Backlight broken Due to forcing `hidd` into spinning up with the fallback mode enabled, this can break the OS's recognition of backlight keyboards. Thankfully the drivers themselves still do operate so applications such as [LabTick](https://www.macupdate.com/app/mac/22151/lab-tick) are able to set the brightness manually. From 70cb12413a5056a738168de1310bfdff6a69534e Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Tue, 20 Jul 2021 08:56:38 -0600 Subject: [PATCH 2/3] Update ACCEL.md --- docs/ACCEL.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/ACCEL.md b/docs/ACCEL.md index ca5446d3b..6194fae2c 100644 --- a/docs/ACCEL.md +++ b/docs/ACCEL.md @@ -41,7 +41,8 @@ chmod +x tccplus ./tccplus add Microphone com.hnc.Discord ``` -In Big Sur currently `tccplus` and like utilities no longer work and this requires something more along the lines of this: +For those who may experience issues with `tccplus`, you can manually patch `com.apple.TCC` ti add permissions: + ```sh # get app id (Zoom.us used in example): $ osascript -e 'id of app "zoom.us"' From 8711b4069a2a752abd36145f499c6605c0ca7f57 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Tue, 20 Jul 2021 08:57:06 -0600 Subject: [PATCH 3/3] Update ACCEL.md --- docs/ACCEL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ACCEL.md b/docs/ACCEL.md index 6194fae2c..576720b7a 100644 --- a/docs/ACCEL.md +++ b/docs/ACCEL.md @@ -41,7 +41,7 @@ chmod +x tccplus ./tccplus add Microphone com.hnc.Discord ``` -For those who may experience issues with `tccplus`, you can manually patch `com.apple.TCC` ti add permissions: +For those who may experience issues with `tccplus`, you can manually patch `com.apple.TCC` to add permissions: ```sh # get app id (Zoom.us used in example):