Feature Request - Workflow Option, Light or Dark Mode

Issue #106 on hold
Michael Seaholm created an issue

Have a checkbox to choose between Light or Dark mode within Workflow (used if creating new user and skipping Setup Assistant)

Comments (4)

  1. Michael Seaholm reporter

    Can't determine the plist. Can work by running the AppleScript below. If you're able to uncover the location of the culprit before me, let me know. It's driving me crazy!!!

    tell application "System Events"
        tell appearance preferences
            get properties
            set currentValue to dark mode
            if currentValue is false then
                set properties to {dark mode:true}
            end if
        end tell
    end tell
    
  2. Log in to comment