feat: use quickshell native sway functions

This commit is contained in:
Nydragon 2024-11-03 15:35:47 +01:00
parent 2a75912724
commit f31a57c15d
Signed by: nydragon
SSH key fingerprint: SHA256:WcjW5NJPQ8Dx4uQDmoIlVPLWE27Od3fxoe0IUvuoPHE
4 changed files with 13 additions and 47 deletions

18
flake.lock generated
View file

@ -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": {

View file

@ -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";
};
};

View file

@ -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;
}
}
}
}
}

View file

@ -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);