summaryrefslogtreecommitdiffstats
path: root/src/config/clean/theme/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/config/clean/theme/mod.rs')
-rw-r--r--src/config/clean/theme/mod.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/config/clean/theme/mod.rs b/src/config/clean/theme/mod.rs
new file mode 100644
index 0000000..a9f7cbb
--- /dev/null
+++ b/src/config/clean/theme/mod.rs
@@ -0,0 +1,11 @@
+pub mod config;
+pub mod style;
+pub mod tab;
+
+pub use config::*;
+
+#[cfg(not(target_os = "windows"))]
+const DEFAULT_CONFIG_FILE_PATH: &str = include_str!("../../../../config/theme.toml");
+
+#[cfg(target_os = "windows")]
+const DEFAULT_CONFIG_FILE_PATH: &str = include_str!("..\\..\\..\\..\\config\\theme.toml");