Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RFC] macOS code choices #3

Closed
jrappen opened this issue Mar 4, 2020 · 0 comments
Closed

[RFC] macOS code choices #3

jrappen opened this issue Mar 4, 2020 · 0 comments

Comments

@jrappen
Copy link

jrappen commented Mar 4, 2020

Hi, first of all thanks for sharing the code.


I'm curious, was there a specific reason why you didn't choose this simpler way of detecting dark mode?

# querying for dark mode

try:
    get_status = 'defaults read -g AppleInterfaceStyle'
    import subprocess
    status = subprocess.check_output(
        get_status.split(),
        stderr = subprocess.STDOUT
    ).decode()
    status = status.replace('\n', '')
except subprocess.CalledProcessError as e:
    return False
return True if status.lower() == 'dark' else False
@jrappen jrappen closed this as completed May 23, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant