diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-23 13:13:15 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-02-23 13:13:15 +1100 |
| commit | 46b8626f7da88db1d06f99d5a32066922772b22c (patch) | |
| tree | 51ee68a975af0a6990453d9f77fd7a7c5c827830 /src | |
| parent | config: forgot to remove print (diff) | |
| download | caelestia-shell-46b8626f7da88db1d06f99d5a32066922772b22c.tar.gz caelestia-shell-46b8626f7da88db1d06f99d5a32066922772b22c.tar.bz2 caelestia-shell-46b8626f7da88db1d06f99d5a32066922772b22c.zip | |
bar: fix workspace module
Diffstat (limited to 'src')
| -rw-r--r-- | src/modules/bar.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/bar.tsx b/src/modules/bar.tsx index c1c3dfc..c2695c4 100644 --- a/src/modules/bar.tsx +++ b/src/modules/bar.tsx @@ -198,7 +198,7 @@ const Workspace = ({ idx }: { idx: number }) => { }; self.hook(config.modules.workspaces.shown, updateWs); - self.hook(hyprland, "notify::focused-workspace", () => updateWs); + self.hook(hyprland, "notify::focused-workspace", updateWs); self.hook(hyprland, "client-added", update); self.hook(hyprland, "client-moved", update); self.hook(hyprland, "client-removed", update); |