NightShift Toggle crash.

Hi

I'm on alpha ( 3.510).
Macbook Pro M1.

Describe the bug
When i use the toggle nightshift on touchbar from OSX functionality BTT is crashing...

Device information:

  • Type of Mac: Macbook Pro M1
  • macOS version: Big Sur
  • BetterTouchTool version: 3.510.

Additional information (e.g. StackTraces, related issues, screenshots, workarounds, etc.):
Crash-NightShift-BTT.crash (119.7 KB)

Also experiencing the same issue, any solution?
MacBook Pro M1

Unfortunately it looks like the M1 version of macOS/the frameworks doesn't allow to control nightshift via third party apps anymore but I'll keep looking for a solution ;-(

1 Like

Definitely not an ideal solution, but an Apple Script that opens the preference pane could be a potential option?

tell application "System Preferences"
activate
reveal anchor "displaysNightShiftTab" of pane id "com.apple.preference.displays"
delay 1
end tell

tell application "System Events"
tell process "System Preferences"
click checkbox 1 of tab group 1 of window 1
end tell
end tell

tell application "System Preferences"
quit
end tell

Encountered the same issue on my M1 MBA and came searching for this issue. Sounds to me like it's not a Big Sur issue but an M1 issue?