view src/sys/x11/dark_theme.cc @ 366:886f66775f31

animone: add preliminary AT-SPI stuff anime_list: finish the regular singular right click menu
author Paper <paper@tflc.us>
date Sun, 17 Nov 2024 19:56:01 -0500
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