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": { "locked": {
"lastModified": 1731811628, "lastModified": 1731708624,
"narHash": "sha256-6F9QN7KTHeI3UzgqaNrqGxzwPSkiGS9CbnDJcwhSIRU=", "narHash": "sha256-23K5I4km7evzYB8tXIzi80Lo33kMcpwVtI3H4IiKk7k=",
"owner": "nydragon", "owner": "nydragon",
"repo": "quickshell", "repo": "quickshell",
"rev": "eaa31d0d027c205a13815acbd50b9a90c96440f6", "rev": "6ca870d48e1ddb3ae459dda188c2ba9b5213470f",
"type": "github" "type": "github"
}, },
"original": { "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 QtQuick
import Quickshell
import Quickshell.Io import Quickshell.Io
import Quickshell.Hyprland import Quickshell.Hyprland
import Quickshell.I3 import Quickshell.I3
@ -25,19 +24,27 @@ Item {
} }
} }
Component.onCompleted: { Process {
root.name = Quickshell.env("XDG_CURRENT_DESKTOP"); command: ["env"]
running: true
switch (root.name) { stdout: SplitParser {
case "sway": onRead: data => {
case "none+i3": if (data.startsWith("XDG_CURRENT_DESKTOP=")) {
root.active = Qt.binding(() => I3.focusedWorkspace?.num ?? root.active); root.name = data.slice(20);
break; switch (root.name) {
case "Hyprland": case "sway":
root.active = Qt.binding(() => Hyprland.focusedMonitor?.activeWorkspace?.id ?? root.active); case "none+i3":
break; root.active = Qt.binding(() => I3.focusedWorkspace?.num ?? root.active);
default: break;
console.log("This desktop is unhandled:", root.name); case "Hyprland":
root.active = Qt.binding(() => Hyprland.focusedMonitor?.activeWorkspace?.id ?? root.active);
break;
default:
console.log("This desktop is unhandled:", root.name);
}
}
}
} }
} }
} }