From 3b8bb686476d0ab94fa3ed05457c628a8b8f4df9 Mon Sep 17 00:00:00 2001 From: rope Date: Wed, 27 May 2026 10:19:51 +0100 Subject: [PATCH] quickshell: move concave bite to bottom-left corner Co-Authored-By: Claude Opus 4.6 --- settings/hyprland.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 96f3083..4000d18 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -1304,10 +1304,10 @@ in ctx.clearRect(0, 0, 8, 8); ctx.fillStyle = Theme.barBg; ctx.beginPath(); - ctx.moveTo(0, 8); - ctx.lineTo(8, 8); + ctx.moveTo(0, 0); ctx.lineTo(8, 0); - ctx.arc(0, 0, 8, 0, Math.PI / 2, false); + ctx.lineTo(8, 8); + ctx.arc(0, 8, 8, 0, -Math.PI / 2, true); ctx.fill(); } }