chore: bump lock
This commit is contained in:
parent
f31a57c15d
commit
7a6f89d427
3 changed files with 8 additions and 7 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -23,11 +23,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1730530038,
|
"lastModified": 1730728824,
|
||||||
"narHash": "sha256-D3t7uwFNdgJNgSvoHAY+nX4azEkJFIIx7hntVAqihGU=",
|
"narHash": "sha256-Lyt193dMxp6M5DdiuImW+BArUeeIxk2EJEJhv8ag6sw=",
|
||||||
"owner": "nydragon",
|
"owner": "nydragon",
|
||||||
"repo": "quickshell",
|
"repo": "quickshell",
|
||||||
"rev": "28f281952d93768ec664f3eeb2becba5abdddf0d",
|
"rev": "e98405ae9088946d8b58b0b7914d9fd7a143b816",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -4,7 +4,7 @@ Rectangle {
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: width
|
height: width
|
||||||
border.color: "black"
|
border.color: "black"
|
||||||
border.width: 2
|
border.width: 1
|
||||||
radius: 5
|
radius: 5
|
||||||
color: "#BD93F9"
|
color: "#BD93F9"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
import QtQuick
|
import QtQuick
|
||||||
import Quickshell.Io
|
import Quickshell.Io
|
||||||
import Quickshell.Hyprland
|
import Quickshell.Hyprland
|
||||||
import Quickshell.Sway
|
import Quickshell.I3
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: root
|
id: root
|
||||||
|
@ -14,7 +14,7 @@ Item {
|
||||||
console.log(`We are switching from workspace ${active} to ${w}`);
|
console.log(`We are switching from workspace ${active} to ${w}`);
|
||||||
switch (root.name) {
|
switch (root.name) {
|
||||||
case "sway":
|
case "sway":
|
||||||
Sway.dispatch(`workspace ${w}`);
|
I3.dispatch(`workspace ${w}`);
|
||||||
break;
|
break;
|
||||||
case "Hyprland":
|
case "Hyprland":
|
||||||
Hyprland.dispatch(`workspace ${w}`);
|
Hyprland.dispatch(`workspace ${w}`);
|
||||||
|
@ -34,7 +34,8 @@ Item {
|
||||||
root.name = data.slice(20);
|
root.name = data.slice(20);
|
||||||
switch (root.name) {
|
switch (root.name) {
|
||||||
case "sway":
|
case "sway":
|
||||||
root.active = Qt.binding(() => Sway.focusedWorkspace?.num ?? root.active);
|
case "none+i3":
|
||||||
|
root.active = Qt.binding(() => I3.focusedWorkspace?.num ?? root.active);
|
||||||
break;
|
break;
|
||||||
case "Hyprland":
|
case "Hyprland":
|
||||||
root.active = Qt.binding(() => Hyprland.focusedMonitor?.activeWorkspace?.id ?? root.active);
|
root.active = Qt.binding(() => Hyprland.focusedMonitor?.activeWorkspace?.id ?? root.active);
|
||||||
|
|
Loading…
Add table
Reference in a new issue