Mercurial > minori
annotate src/sys/x11/dark_theme.cc @ 377:1b0b8e746d83 default tip
CI/windows: stupid msys2
| author | Paper <paper@tflc.us> |
|---|---|
| date | Fri, 25 Jul 2025 12:40:25 -0400 |
| parents | 99c961c91809 |
| children |
| rev | line source |
|---|---|
| 351 | 1 #include "sys/x11/dark_theme.h" |
| 2 #include "sys/x11/settings.h" | |
| 3 #include "sys/glib/dark_theme.h" /* glib::IsGTKThemeDark */ | |
| 4 | |
| 5 namespace x11 { | |
| 6 | |
| 7 bool IsInDarkTheme() { | |
| 8 SettingsItem setting; | |
| 9 if (!FindSetting(u8"Net/ThemeName", setting)) | |
| 10 return false; | |
| 11 | |
| 12 return glib::IsGTKThemeDark(setting.data.string); | |
| 13 } | |
| 14 | |
| 15 } // namespace glib |
