use more hyprland dispatch exec instead of a process for simple stuff

This commit is contained in:
end-4
2025-04-27 23:22:27 +02:00
parent 9b0d769598
commit ab9b17a188
6 changed files with 17 additions and 48 deletions
+3 -3
View File
@@ -1,7 +1,8 @@
import Quickshell
import Quickshell.Io
pragma Singleton
pragma ComponentBehavior: Bound
import Quickshell
import Quickshell.Io
import Quickshell.Hyprland
Singleton {
id: root
@@ -88,5 +89,4 @@ Singleton {
root.increment = -1
}
}
}
-2
View File
@@ -34,7 +34,6 @@ Singleton {
stdout: SplitParser {
onRead: data => {
root.networkName = data
// console.log("Network: " + data);
}
}
}
@@ -46,7 +45,6 @@ Singleton {
stdout: SplitParser {
onRead: data => {
root.networkStrength = parseInt(data);
// console.log("Network Strength: " + data);
}
}
}