tmfd Go to Stillcolor at the top left of the Xcode file tree, then "Stillcolor" under TARGETS, then Signing and Capabilities. If you see stuff like "App Sandbox" and "Hardened Runtime" here, there should be trash can icons at the top right of each of them. Click the trash can on both so all you're left with is one tab called "π» Signing". This will remove the app sandbox and allow those properties to be changed.
Then, just comment out the alert.runModal() line that shows the alert box that says "Stillcolor Issue". It will say "invalid argument" some times but then end with a "successful" anyway in the console after it tries a couple of times, so even though it makes it "look like" it didn't work, it does make the change as long as app sandbox is disabled and you eventually see "returned 0 -> (os/kern) successful" in the Xcode console.
For example, here's what I get in the console when I disable VUCEnable:
(Disabled = box checked in the Stillcolor menu bar BTW)
AppleCLCD2 service: 310b
AppleCLCD2 client: a17b
IORegistryEntrySetCFProperty returned -536870206 -> (iokit/common) invalid argument
Failed to set VUCEnable to false IORegistryEntrySetCFProperty returned -536870206 -> (iokit/common) invalid argument
AppleCLCD2 service: 310f
AppleCLCD2 client: a17f
IORegistryEntrySetCFProperty returned -536870206 -> (iokit/common) invalid argument
Failed to set VUCEnable to false IORegistryEntrySetCFProperty returned -536870206 -> (iokit/common) invalid argument
AppleCLCD2 service: 3113
AppleCLCD2 client: a183
IORegistryEntrySetCFProperty returned -536870206 -> (iokit/common) invalid argument
Failed to set VUCEnable to false IORegistryEntrySetCFProperty returned -536870206 -> (iokit/common) invalid argument
AppleCLCD2 service: 3117
AppleCLCD2 client: a187
IORegistryEntrySetCFProperty returned -536870206 -> (iokit/common) invalid argument
Failed to set VUCEnable to false IORegistryEntrySetCFProperty returned -536870206 -> (iokit/common) invalid argument
AppleCLCD2 service: 311b
AppleCLCD2 client: a18b
IORegistryEntrySetCFProperty returned 0 -> (os/kern) successful
VUCEnable set to false
It says "failed" a bunch of times, but eventually ends with successful, and the VUC change works in the end.