feat: make nmtui toggleable

This commit is contained in:
Nydragon 2024-09-21 03:48:53 +02:00
parent db3042111f
commit c6158cdc4e
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
2 changed files with 1 additions and 4 deletions

View file

@ -15,7 +15,7 @@ BRectangle {
} }
onClicked: () => { onClicked: () => {
gui.running = true; gui.running = !gui.running;
} }
Process { Process {

View file

@ -22,9 +22,6 @@ BRectangle {
id: gui id: gui
running: false running: false
command: ["swaync-client", "-t"] command: ["swaync-client", "-t"]
stdout: SplitParser {
onRead: data => console.log(`line read: ${data}`)
}
} }
} }
} }