Compare commits

...

2 commits

Author SHA1 Message Date
f4fa7deadf
chore: use quickshell's env getter 2024-11-17 15:27:05 +01:00
187037fd25
chore: bump lock 2024-11-17 15:26:54 +01:00
3 changed files with 44 additions and 23 deletions

6
flake.lock generated
View file

@ -23,11 +23,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1731708624, "lastModified": 1731811628,
"narHash": "sha256-23K5I4km7evzYB8tXIzi80Lo33kMcpwVtI3H4IiKk7k=", "narHash": "sha256-6F9QN7KTHeI3UzgqaNrqGxzwPSkiGS9CbnDJcwhSIRU=",
"owner": "nydragon", "owner": "nydragon",
"repo": "quickshell", "repo": "quickshell",
"rev": "6ca870d48e1ddb3ae459dda188c2ba9b5213470f", "rev": "eaa31d0d027c205a13815acbd50b9a90c96440f6",
"type": "github" "type": "github"
}, },
"original": { "original": {

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 {
} }
} }
} }
}
}
}