view src/sys/x11/dark_theme.cc @ 372:a65a43766b22

dep/animone: atspi a11y impl didn't work at all and hit an assertion because paper can't code
author Paper <paper@tflc.us>
date Fri, 25 Jul 2025 11:02:29 -0400
parents 99c961c91809
children
line wrap: on
line source

#include "sys/x11/dark_theme.h"
#include "sys/x11/settings.h"
#include "sys/glib/dark_theme.h" /* glib::IsGTKThemeDark */

namespace x11 {

bool IsInDarkTheme() {
	SettingsItem setting;
	if (!FindSetting(u8"Net/ThemeName", setting))
		return false;

	return glib::IsGTKThemeDark(setting.data.string);
}

} // namespace glib