Compare commits
2 commits
0ce0c58162
...
f4fa7deadf
Author | SHA1 | Date | |
---|---|---|---|
f4fa7deadf | |||
187037fd25 |
3 changed files with 44 additions and 23 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -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": {
|
||||||
|
|
|
@ -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
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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 {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue