summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorRomain Porte <microjoe@microjoe.org>2020-07-12 00:34:37 +0200
committerRomain Porte <microjoe@microjoe.org>2020-07-14 10:38:23 +0200
commitfc0ca71193af110d1edd84959f25064490895569 (patch)
tree451b9c3853269e9fb54b2f21def19b4252825317 /examples
downloadplymouth-rs-fc0ca71193af110d1edd84959f25064490895569.tar.gz
plymouth-rs-fc0ca71193af110d1edd84959f25064490895569.zip
initial commit
Diffstat (limited to 'examples')
-rw-r--r--examples/current-theme.rs12
-rw-r--r--examples/list-themes.rs5
2 files changed, 17 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);
+ }
+}
diff --git a/examples/list-themes.rs b/examples/list-themes.rs
new file mode 100644
index 0000000..d499cb8
--- /dev/null
+++ b/examples/list-themes.rs
@@ -0,0 +1,5 @@
+use plymouth::Theme;
+
+fn main() {
+ Theme::list().unwrap().for_each(|name| println!("{}: {:?}", name, Theme::from_name(&name)));
+}