diff --git a/flake.lock b/flake.lock index f6989b6..8489f81 100644 --- a/flake.lock +++ b/flake.lock @@ -23,11 +23,11 @@ ] }, "locked": { - "lastModified": 1730530038, - "narHash": "sha256-D3t7uwFNdgJNgSvoHAY+nX4azEkJFIIx7hntVAqihGU=", + "lastModified": 1731273338, + "narHash": "sha256-68ShOPY2dcNYG4bbMyJIl0BAsenI7HqeCAFb+BUPXGc=", "owner": "nydragon", "repo": "quickshell", - "rev": "28f281952d93768ec664f3eeb2becba5abdddf0d", + "rev": "fe209db482e034b9f9083da6b61c7693c8362f4b", "type": "github" }, "original": { diff --git a/nix/shell.nix b/nix/shell.nix index da81a2c..a1e85d0 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -1,6 +1,6 @@ { pkgs, quickshell, ... }: pkgs.mkShell { - buildInputs = [ + packages = [ quickshell pkgs.kdePackages.qtdeclarative pkgs.pre-commit diff --git a/src/base/BRectangle.qml b/src/base/BRectangle.qml index 949fcea..fe1196b 100644 --- a/src/base/BRectangle.qml +++ b/src/base/BRectangle.qml @@ -4,7 +4,7 @@ Rectangle { width: parent.width height: width border.color: "black" - border.width: 2 + border.width: 1 radius: 5 color: "#BD93F9" } diff --git a/src/widgets/workspaces/WorkspaceIPC.qml b/src/widgets/workspaces/WorkspaceIPC.qml index 0a8f5bd..ee18d6f 100644 --- a/src/widgets/workspaces/WorkspaceIPC.qml +++ b/src/widgets/workspaces/WorkspaceIPC.qml @@ -1,7 +1,7 @@ import QtQuick import Quickshell.Io import Quickshell.Hyprland -import Quickshell.Sway +import Quickshell.I3 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}`); + I3.dispatch(`workspace ${w}`); break; case "Hyprland": Hyprland.dispatch(`workspace ${w}`); @@ -34,7 +34,8 @@ Item { root.name = data.slice(20); switch (root.name) { case "sway": - root.active = Qt.binding(() => Sway.focusedWorkspace?.num ?? root.active); + case "none+i3": + root.active = Qt.binding(() => I3.focusedWorkspace?.num ?? root.active); break; case "Hyprland": root.active = Qt.binding(() => Hyprland.focusedMonitor?.activeWorkspace?.id ?? root.active);