feat: open dash only on focused monitor

This commit is contained in:
Nydragon 2024-11-15 18:03:12 +01:00
parent d9463f5ded
commit b801e460a4
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE

View file

@ -1,4 +1,5 @@
import Quickshell
import Quickshell.I3
import QtQuick
import QtQuick.Layouts
import QtQml
@ -11,10 +12,10 @@ PanelWindow {
id: homeWindow
property bool animRunning: false
property bool focused: I3.monitorFor(homeWindow.screen).focused
color: "transparent"
visible: animRunning || NyshState.dashOpen
visible: (animRunning || NyshState.dashOpen) && focused
focusable: true
anchors {