theme_detector/lib.rs
1// SPDX-FileCopyrightText: 2023 CELESTIFYX Team
2// SPDX-License-Identifier: GPL-3.0-or-later
3
4mod constants;
5mod gtk;
6mod qt;
7mod properties;
8mod settings;
9
10#[cfg(feature = "dconf")]
11mod dconf;
12
13pub use gtk::{
14 GtkResult,
15 detect_gtk2,
16 detect_gtk3,
17 detect_gtk4
18};
19
20pub use qt::{
21 QtResult,
22 detect_qt
23};