summaryrefslogtreecommitdiffstats
path: root/examples/current-theme.rs
diff options
context:
space:
mode:
authorAgathe Porte <microjoe@microjoe.org>2020-07-12 00:34:37 +0200
committerAgathe Porte <microjoe@microjoe.org>2020-07-14 10:38:23 +0200
commit9fae66d7cdbba8fd68d835c23e2fd7739c185024 (patch)
tree78c9acab70f41a8ca4b580ff4ad8298c995bde8e /examples/current-theme.rs
downloadplymouth-rs-9fae66d7cdbba8fd68d835c23e2fd7739c185024.tar.gz
plymouth-rs-9fae66d7cdbba8fd68d835c23e2fd7739c185024.zip
initial commit
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);
+ }
+}