diff options
author | Raul Santos <raulsntos@gmail.com> | 2022-08-30 17:04:17 +0200 |
---|---|---|
committer | Raul Santos <raulsntos@gmail.com> | 2022-09-02 16:49:21 +0200 |
commit | 471c9c296935fb1cf997f2ef5ef8883b3ebf941c (patch) | |
tree | 0d194fac73259bd03482d5afbd9067b3b8c28f6e /platform/linuxbsd/detect.py | |
parent | 6ccbc2709323c3f77f9509dcf55edad6d46e2a7c (diff) | |
download | redot-engine-471c9c296935fb1cf997f2ef5ef8883b3ebf941c.tar.gz |
Add support for system dark mode (Linux)
- Use `org.freedesktop.appearance color-scheme` to support system dark mode.
Diffstat (limited to 'platform/linuxbsd/detect.py')
-rw-r--r-- | platform/linuxbsd/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index dd829bdb9b..f5f7e65417 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -40,7 +40,7 @@ def get_opts(): BoolVariable("use_tsan", "Use LLVM/GCC compiler thread sanitizer (TSAN)", False), BoolVariable("use_msan", "Use LLVM compiler memory sanitizer (MSAN)", False), BoolVariable("pulseaudio", "Detect and use PulseAudio", True), - BoolVariable("dbus", "Detect and use D-Bus to handle screensaver", True), + BoolVariable("dbus", "Detect and use D-Bus to handle screensaver and portal desktop settings", True), BoolVariable("speechd", "Detect and use Speech Dispatcher for Text-to-Speech support", True), BoolVariable("fontconfig", "Detect and use fontconfig for system fonts support", True), BoolVariable("udev", "Use udev for gamepad connection callbacks", True), |