From 28aa79dd13f726433fbacea4ec590c8ce7824266 Mon Sep 17 00:00:00 2001 From: tux Date: Mon, 24 Aug 2026 17:58:46 +0530 Subject: [PATCH] style(bar): disable hover highlight on icon buttons --- modules/bar/GhostButton.qml | 1 + modules/bar/LauncherButton.qml | 1 + 2 files changed, 2 insertions(+) diff --git a/modules/bar/GhostButton.qml b/modules/bar/GhostButton.qml index 3ff6ac6..517eeca 100644 --- a/modules/bar/GhostButton.qml +++ b/modules/bar/GhostButton.qml @@ -5,5 +5,6 @@ import qs.ui BarButton { iconOnly: true + hoverHighlight: false iconSource: `${Quickshell.shellPath("assets")}/icons/ghost.svg` } diff --git a/modules/bar/LauncherButton.qml b/modules/bar/LauncherButton.qml index efbaae2..686c271 100644 --- a/modules/bar/LauncherButton.qml +++ b/modules/bar/LauncherButton.qml @@ -5,6 +5,7 @@ import qs.ui BarButton { iconOnly: true + hoverHighlight: false iconSource: `${Quickshell.shellPath("assets")}/icons/nix.svg` onClicked: Quickshell.execDetached(["vicinae", "toggle"]) }