From 291d3c026d92f2581b6691fabb77342be6404e27 Mon Sep 17 00:00:00 2001 From: casglistro Date: Thu, 18 Apr 2024 02:38:03 +0800 Subject: [PATCH] disable active client signal --- .config/ags/modules/dock/dock.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.config/ags/modules/dock/dock.js b/.config/ags/modules/dock/dock.js index 5b800e2e1..65c733009 100644 --- a/.config/ags/modules/dock/dock.js +++ b/.config/ags/modules/dock/dock.js @@ -296,9 +296,9 @@ export default (monitor = 0) => { transitionDuration: userOptions.animations.durationLarge, child: dockContent, setup: (self) => self - .hook(Hyprland, (self) => self.attribute.updateShow(self)) + // .hook(Hyprland, (self) => self.attribute.updateShow(self)) .hook(Hyprland.active.workspace, (self) => self.attribute.updateShow(self)) - .hook(Hyprland.active.client, (self) => self.attribute.updateShow(self)) + // .hook(Hyprland.active.client, (self) => self.attribute.updateShow(self)) .hook(Hyprland, (self) => self.attribute.updateShow(self), 'client-added') .hook(Hyprland, (self) => self.attribute.updateShow(self), 'client-removed') ,