summaryrefslogtreecommitdiff
path: root/src/modules/bar.tsx
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-02-23 13:13:15 +1100
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-02-23 13:13:15 +1100
commit46b8626f7da88db1d06f99d5a32066922772b22c (patch)
tree51ee68a975af0a6990453d9f77fd7a7c5c827830 /src/modules/bar.tsx
parentconfig: forgot to remove print (diff)
downloadcaelestia-shell-46b8626f7da88db1d06f99d5a32066922772b22c.tar.gz
caelestia-shell-46b8626f7da88db1d06f99d5a32066922772b22c.tar.bz2
caelestia-shell-46b8626f7da88db1d06f99d5a32066922772b22c.zip
bar: fix workspace module
Diffstat (limited to 'src/modules/bar.tsx')
-rw-r--r--src/modules/bar.tsx2
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);