feat: open dash only on focused monitor
This commit is contained in:
parent
d9463f5ded
commit
b801e460a4
1 changed files with 3 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Add table
Reference in a new issue