about summary refs log tree commit diff stats
path: root/pkgs/by-name/ya/yambar-modules/src/main.rs
diff options
context:
space:
mode:
authorBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-29 18:48:07 +0100
committerBenedikt Peetz <benedikt.peetz@b-peetz.de>2024-11-29 18:48:07 +0100
commitcbd9aec4bf2e488156f5dc101271d572af0cd2ca (patch)
tree57c7b6397084c1c386aab1a25f1fa93e84480338 /pkgs/by-name/ya/yambar-modules/src/main.rs
parentfix(modules/lf/cmds/set_clipboard_path): Provide feedback to the user (diff)
downloadnixos-config-cbd9aec4bf2e488156f5dc101271d572af0cd2ca.tar.gz
nixos-config-cbd9aec4bf2e488156f5dc101271d572af0cd2ca.zip
chore(pkgs/by-name/ya/{cpu,memory}): Merge
There is no reason to keep these two programs separate.
Diffstat (limited to '')
-rw-r--r--pkgs/by-name/ya/yambar-modules/src/main.rs26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/by-name/ya/yambar-modules/src/main.rs b/pkgs/by-name/ya/yambar-modules/src/main.rs
new file mode 100644
index 00000000..315c3be7
--- /dev/null
+++ b/pkgs/by-name/ya/yambar-modules/src/main.rs
@@ -0,0 +1,26 @@
+use std::{env::args, process};
+
+mod cpu;
+mod memory;
+
+fn main() {
+    let args: Vec<String> = args().collect();
+
+    if args.len() != 2 {
+        eprintln!("Usage: yambar-modules cpu|memory");
+        process::exit(1);
+    }
+
+    match args[1].as_str() {
+        "cpu" => {
+            cpu::cpu();
+        }
+        "memory" => {
+            memory::memory();
+        }
+        other => {
+            eprintln!("'{other}' is not a valid command. Only 'cpu' or 'memory'.");
+            process::exit(1);
+        }
+    }
+}