feat: dash ahndles multiple monitors (shitily)

This commit is contained in:
Nydragon 2024-11-16 00:04:20 +01:00
parent 542cacd84c
commit 9b5eb8ab72
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
3 changed files with 12 additions and 4 deletions

6
flake.lock generated
View file

@ -23,11 +23,11 @@
]
},
"locked": {
"lastModified": 1731691072,
"narHash": "sha256-ltqP0INiEErk1BVrMyJoH/WEFLYzNG42tL/i5BOP2gw=",
"lastModified": 1731708624,
"narHash": "sha256-23K5I4km7evzYB8tXIzi80Lo33kMcpwVtI3H4IiKk7k=",
"owner": "nydragon",
"repo": "quickshell",
"rev": "b9a1a6090bc89e5a8214516cac2bd2c32a95d2f1",
"rev": "6ca870d48e1ddb3ae459dda188c2ba9b5213470f",
"type": "github"
},
"original": {

View file

@ -12,7 +12,7 @@ PanelWindow {
id: homeWindow
property bool animRunning: false
property bool focused: I3.monitorFor(homeWindow.screen).focused
required property bool focused
color: "transparent"
visible: (animRunning || NyshState.dashOpen) && focused

View file

@ -1,5 +1,6 @@
import QtQuick
import Quickshell
import Quickshell.I3
Item {
id: root
@ -10,7 +11,14 @@ Item {
screen: root.screen
}
Component.onCompleted: {
I3.focusedMonitorChanged.connect(e => {
dash.focused = I3.monitorFor(root.screen).focused;
});
}
property Dashboard dash: Dashboard {
screen: root.screen
focused: I3.monitorFor(root.screen).focused
}
}