feat: dash ahndles multiple monitors (shitily)
This commit is contained in:
parent
542cacd84c
commit
9b5eb8ab72
3 changed files with 12 additions and 4 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -23,11 +23,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1731691072,
|
"lastModified": 1731708624,
|
||||||
"narHash": "sha256-ltqP0INiEErk1BVrMyJoH/WEFLYzNG42tL/i5BOP2gw=",
|
"narHash": "sha256-23K5I4km7evzYB8tXIzi80Lo33kMcpwVtI3H4IiKk7k=",
|
||||||
"owner": "nydragon",
|
"owner": "nydragon",
|
||||||
"repo": "quickshell",
|
"repo": "quickshell",
|
||||||
"rev": "b9a1a6090bc89e5a8214516cac2bd2c32a95d2f1",
|
"rev": "6ca870d48e1ddb3ae459dda188c2ba9b5213470f",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -12,7 +12,7 @@ PanelWindow {
|
||||||
id: homeWindow
|
id: homeWindow
|
||||||
|
|
||||||
property bool animRunning: false
|
property bool animRunning: false
|
||||||
property bool focused: I3.monitorFor(homeWindow.screen).focused
|
required property bool focused
|
||||||
|
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
visible: (animRunning || NyshState.dashOpen) && focused
|
visible: (animRunning || NyshState.dashOpen) && focused
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import Quickshell
|
import Quickshell
|
||||||
|
import Quickshell.I3
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
@ -10,7 +11,14 @@ Item {
|
||||||
screen: root.screen
|
screen: root.screen
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Component.onCompleted: {
|
||||||
|
I3.focusedMonitorChanged.connect(e => {
|
||||||
|
dash.focused = I3.monitorFor(root.screen).focused;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
property Dashboard dash: Dashboard {
|
property Dashboard dash: Dashboard {
|
||||||
screen: root.screen
|
screen: root.screen
|
||||||
|
focused: I3.monitorFor(root.screen).focused
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue