We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4923dcd commit 658d1d1Copy full SHA for 658d1d1
src/main.rs
@@ -123,7 +123,13 @@ fn build_ui(app: &Application) {
123
.build();
124
// Connect to "clicked" signal of `button`
125
button3.connect_clicked(move |_| {
126
- let p: Processor = Processor::new("Nvidia Settings");//,"nvidia-settings","-t");
+ let p: Processor = Processor::new("nvidia-settings", "-q GpuUUID -t");
127
+
128
+ //NOTE: Leaving this here for future use..
129
+ //p.set_property("base-call", "nvidia-settings");
130
+ //p.set_property("call", "nvidia-settings");
131
+ //p.set_property("tail-call", "t");
132
133
match p.process() {
134
Ok(output) => match output {
135
Some(valid_output) => println!("Process suceeded, returning: `{}`", valid_output),
0 commit comments