disable active client signal

This commit is contained in:
casglistro
2024-04-18 02:38:03 +08:00
parent bd93aae83f
commit 844c85e9a2
+2 -2
View File
@@ -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')
,