refactor: centralize utility paths in Settings for zigbrightness and zigstat programs

This commit is contained in:
JPratama7 2025-07-29 00:18:37 +07:00
parent bdfab74e1e
commit e319d0dfd6
No known key found for this signature in database
GPG key ID: CD3EB7D0490C5F4B
3 changed files with 5 additions and 3 deletions

View file

@ -19,7 +19,7 @@ Item {
Process {
id: getBrightnessProcess
command: [Quickshell.shellDir + "/Programs/zigbrightness", "get", monitorName]
command: [Settings.settings.zigbrightnessPath, "get", monitorName]
stdout: StdioCollector {
onStreamFinished: {
@ -47,7 +47,7 @@ Item {
Process {
id: setBrightnessProcess
property int targetValue: -1
command: [Quickshell.shellDir + "/Programs/zigbrightness", "set", monitorName, targetValue.toString()]
command: [Settings.settings.zigbrightnessPath, "set", monitorName, targetValue.toString()]
stdout: StdioCollector {
onStreamFinished: {