summaryrefslogtreecommitdiffstats
path: root/examples/current-theme.rs
diff options
context:
space:
mode:
Diffstat (limited to 'examples/current-theme.rs')
-rw-r--r--examples/current-theme.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/current-theme.rs b/examples/current-theme.rs
new file mode 100644
index 0000000..f52d36d
--- /dev/null
+++ b/examples/current-theme.rs
@@ -0,0 +1,12 @@
+use plymouth::Plymouthd;
+use plymouth::Theme;
+
+fn main() {
+ let config = Plymouthd::default().expect("could not load default config file");
+ println!("current theme is {:?}", config.current_theme());
+
+ if let Some(name) = config.current_theme() {
+ let theme = Theme::from_name(name).expect("could not load current theme");
+ println!("theme details: {:?}", theme);
+ }
+}