Compare commits

..

No commits in common. "f4fa7deadf094b52ef70987f469ec8e7dea26c2d" and "0ce0c581629852e0b176196df63caa7bcf7f7e30" have entirely different histories.

3 changed files with 23 additions and 44 deletions

6
flake.lock generated
View file

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

View file

@ -12,32 +12,4 @@ 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,5 +1,4 @@
import QtQuick
import Quickshell
import Quickshell.Io
import Quickshell.Hyprland
import Quickshell.I3
@ -25,19 +24,27 @@ Item {
}
}
Component.onCompleted: {
root.name = Quickshell.env("XDG_CURRENT_DESKTOP");
Process {
command: ["env"]
running: true
switch (root.name) {
case "sway":
case "none+i3":
root.active = Qt.binding(() => I3.focusedWorkspace?.num ?? root.active);
break;
case "Hyprland":
root.active = Qt.binding(() => Hyprland.focusedMonitor?.activeWorkspace?.id ?? root.active);
break;
default:
console.log("This desktop is unhandled:", root.name);
stdout: SplitParser {
onRead: data => {
if (data.startsWith("XDG_CURRENT_DESKTOP=")) {
root.name = data.slice(20);
switch (root.name) {
case "sway":
case "none+i3":
root.active = Qt.binding(() => I3.focusedWorkspace?.num ?? root.active);
break;
case "Hyprland":
root.active = Qt.binding(() => Hyprland.focusedMonitor?.activeWorkspace?.id ?? root.active);
break;
default:
console.log("This desktop is unhandled:", root.name);
}
}
}
}
}
}