chore: use quickshell's env getter

This commit is contained in:
Nydragon 2024-11-17 15:27:05 +01:00
parent 187037fd25
commit f4fa7deadf
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
2 changed files with 41 additions and 20 deletions

View file

@ -12,4 +12,32 @@ ShellRoot {
} }
} }
} }
Component.onCompleted: {
Quickshell.reloadCompleted.connect(() => loader.active = false);
Quickshell.reloadFailed.connect(e => {
loader.active = true;
loader.message = e;
});
}
LazyLoader {
id: loader
property string message: ""
PanelWindow {
anchors {
top: true
left: true
right: true
}
Text {
anchors.centerIn: parent
anchors.fill: parent
text: loader.message
}
}
}
} }

View file

@ -1,4 +1,5 @@
import QtQuick import QtQuick
import Quickshell
import Quickshell.Io import Quickshell.Io
import Quickshell.Hyprland import Quickshell.Hyprland
import Quickshell.I3 import Quickshell.I3
@ -24,14 +25,9 @@ Item {
} }
} }
Process { Component.onCompleted: {
command: ["env"] root.name = Quickshell.env("XDG_CURRENT_DESKTOP");
running: true
stdout: SplitParser {
onRead: data => {
if (data.startsWith("XDG_CURRENT_DESKTOP=")) {
root.name = data.slice(20);
switch (root.name) { switch (root.name) {
case "sway": case "sway":
case "none+i3": case "none+i3":
@ -45,6 +41,3 @@ Item {
} }
} }
} }
}
}
}