diff options
author | Agathe Porte <microjoe@microjoe.org> | 2020-07-12 00:34:37 +0200 |
---|---|---|
committer | Agathe Porte <microjoe@microjoe.org> | 2020-07-14 10:38:23 +0200 |
commit | 9fae66d7cdbba8fd68d835c23e2fd7739c185024 (patch) | |
tree | 78c9acab70f41a8ca4b580ff4ad8298c995bde8e /examples | |
download | plymouth-rs-9fae66d7cdbba8fd68d835c23e2fd7739c185024.tar.gz plymouth-rs-9fae66d7cdbba8fd68d835c23e2fd7739c185024.zip |
initial commit
Diffstat (limited to 'examples')
-rw-r--r-- | examples/current-theme.rs | 12 | ||||
-rw-r--r-- | examples/list-themes.rs | 5 |
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))); +} |