feat: use quickshell native sway functions
This commit is contained in:
parent
2a75912724
commit
f31a57c15d
4 changed files with 13 additions and 47 deletions
18
flake.lock
generated
18
flake.lock
generated
|
@ -23,17 +23,17 @@
|
|||
]
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1730157521,
|
||||
"narHash": "sha256-xyodl47NDih2SEYbRkAvv6lPbjjA/E9B0TlCLnGIFa8=",
|
||||
"ref": "refs/heads/master",
|
||||
"rev": "4e48c6eefb399abfcdefbe046a6a642bdcfcc1a6",
|
||||
"revCount": 358,
|
||||
"type": "git",
|
||||
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
|
||||
"lastModified": 1730530038,
|
||||
"narHash": "sha256-D3t7uwFNdgJNgSvoHAY+nX4azEkJFIIx7hntVAqihGU=",
|
||||
"owner": "nydragon",
|
||||
"repo": "quickshell",
|
||||
"rev": "28f281952d93768ec664f3eeb2becba5abdddf0d",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
"type": "git",
|
||||
"url": "https://git.outfoxxed.me/outfoxxed/quickshell"
|
||||
"owner": "nydragon",
|
||||
"repo": "quickshell",
|
||||
"type": "github"
|
||||
}
|
||||
},
|
||||
"root": {
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
|
||||
|
||||
quickshell = {
|
||||
url = "git+https://git.outfoxxed.me/outfoxxed/quickshell";
|
||||
url = "github:nydragon/quickshell";
|
||||
inputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
};
|
||||
|
|
|
@ -1,34 +0,0 @@
|
|||
pragma Singleton
|
||||
|
||||
import Quickshell
|
||||
import QtQuick
|
||||
import Quickshell.Io
|
||||
|
||||
Singleton {
|
||||
id: root
|
||||
|
||||
property int activeWorkspace: 1
|
||||
property var dispatch: m => {
|
||||
sender.command = ["swaymsg", ...m];
|
||||
sender.running = true;
|
||||
}
|
||||
|
||||
Process {
|
||||
id: sender
|
||||
command: []
|
||||
}
|
||||
|
||||
Process {
|
||||
command: ["swaymsg", "-mtsubscribe", "[\"workspace\"]"]
|
||||
running: true
|
||||
|
||||
stdout: SplitParser {
|
||||
onRead: data => {
|
||||
const parsed = JSON.parse(data);
|
||||
if (parsed.change == "focus") {
|
||||
root.activeWorkspace = parsed.current.num;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1,7 +1,7 @@
|
|||
import QtQuick
|
||||
import Quickshell.Io
|
||||
import Quickshell.Hyprland
|
||||
import "root:provider"
|
||||
import Quickshell.Sway
|
||||
|
||||
Item {
|
||||
id: root
|
||||
|
@ -14,7 +14,7 @@ Item {
|
|||
console.log(`We are switching from workspace ${active} to ${w}`);
|
||||
switch (root.name) {
|
||||
case "sway":
|
||||
Sway.dispatch(["workspace", w]);
|
||||
Sway.dispatch(`workspace ${w}`);
|
||||
break;
|
||||
case "Hyprland":
|
||||
Hyprland.dispatch(`workspace ${w}`);
|
||||
|
@ -34,7 +34,7 @@ Item {
|
|||
root.name = data.slice(20);
|
||||
switch (root.name) {
|
||||
case "sway":
|
||||
root.active = Qt.binding(() => Sway.activeWorkspace ?? root.active);
|
||||
root.active = Qt.binding(() => Sway.focusedWorkspace?.num ?? root.active);
|
||||
break;
|
||||
case "Hyprland":
|
||||
root.active = Qt.binding(() => Hyprland.focusedMonitor?.activeWorkspace?.id ?? root.active);
|
||||
|
|
Loading…
Add table
Reference in a new issue