feat: dash handles multiple monitors
This commit is contained in:
parent
542cacd84c
commit
5e5f265de6
5 changed files with 40 additions and 25 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": {
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import Quickshell
|
import Quickshell
|
||||||
import Quickshell.I3
|
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
import QtQml
|
import QtQml
|
||||||
|
@ -12,10 +11,17 @@ 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
|
||||||
|
property bool focusLocked: false
|
||||||
|
|
||||||
color: "transparent"
|
color: "transparent"
|
||||||
visible: (animRunning || NyshState.dashOpen) && focused
|
visible: (animRunning || NyshState.dashOpen) && focusLocked
|
||||||
|
|
||||||
|
Component.onCompleted: NyshState.dashOpenChanged.connect(() => {
|
||||||
|
if (NyshState.dashOpen)
|
||||||
|
focusLocked = focused;
|
||||||
|
})
|
||||||
|
|
||||||
focusable: true
|
focusable: true
|
||||||
|
|
||||||
anchors {
|
anchors {
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import Quickshell
|
import Quickshell
|
||||||
|
import Quickshell.I3
|
||||||
|
import "provider"
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
@ -10,7 +12,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
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,8 +6,9 @@ import Quickshell.Io
|
||||||
Singleton {
|
Singleton {
|
||||||
id: state
|
id: state
|
||||||
property bool dashOpen: false
|
property bool dashOpen: false
|
||||||
|
property bool workspaceViewOpen: false
|
||||||
|
|
||||||
property IpcHandler ipc: IpcHandler {
|
IpcHandler {
|
||||||
target: "dash"
|
target: "dash"
|
||||||
|
|
||||||
function toggle() {
|
function toggle() {
|
||||||
|
@ -15,6 +16,18 @@ Singleton {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IpcHandler {
|
||||||
|
target: "workspace-view"
|
||||||
|
|
||||||
|
function toggle() {
|
||||||
|
state.toggleWorkspaceView();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function toggleWorkspaceView() {
|
||||||
|
state.workspaceViewOpen = !state.workspaceViewOpen;
|
||||||
|
}
|
||||||
|
|
||||||
function toggleDash() {
|
function toggleDash() {
|
||||||
state.dashOpen = !state.dashOpen;
|
state.dashOpen = !state.dashOpen;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,21 +1,18 @@
|
||||||
import Quickshell
|
import Quickshell
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import Quickshell.Io
|
|
||||||
import Quickshell.I3
|
import Quickshell.I3
|
||||||
import QtQuick.Layouts
|
import QtQuick.Layouts
|
||||||
|
import "../../provider"
|
||||||
|
|
||||||
PanelWindow {
|
PanelWindow {
|
||||||
id: workspaceView
|
id: workspaceView
|
||||||
|
|
||||||
IpcHandler {
|
visible: NyshState.workspaceViewOpen
|
||||||
target: "workspace-view"
|
|
||||||
|
|
||||||
function toggle() {
|
|
||||||
workspaceView.visible = !workspaceView.visible;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
focusable: true
|
focusable: true
|
||||||
|
color: "transparent"
|
||||||
|
width: content?.width ?? 500
|
||||||
|
height: content?.height ?? 500
|
||||||
|
|
||||||
GridLayout {
|
GridLayout {
|
||||||
id: content
|
id: content
|
||||||
|
@ -60,14 +57,4 @@ PanelWindow {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
color: "transparent"
|
|
||||||
|
|
||||||
width: content?.width ?? 500
|
|
||||||
height: content?.height ?? 500
|
|
||||||
visible: false
|
|
||||||
|
|
||||||
Component.onCompleted: () => {
|
|
||||||
I3.focusedWorkspaceChanged.connect(() => workspaceView.visible = false);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue