From 5024779126b76e0b8c0eddf1e4f9804bc6868821 Mon Sep 17 00:00:00 2001 From: rope Date: Wed, 27 May 2026 10:13:18 +0100 Subject: [PATCH] quickshell: mirror left ear geometry for bottom-right concave Co-Authored-By: Claude Opus 4.6 --- settings/hyprland.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index b2865df..ff91fa9 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -1304,8 +1304,8 @@ in ctx.clearRect(0, 0, 8, 8); ctx.fillStyle = Theme.barBg; ctx.beginPath(); - ctx.moveTo(0, 0); ctx.lineTo(8, 0); ctx.lineTo(8, 8); - ctx.arc(0, 8, 8, 0, -Math.PI / 2, false); + ctx.moveTo(8, 8); ctx.lineTo(0, 8); ctx.lineTo(0, 0); + ctx.arc(8, 0, 8, Math.PI, Math.PI / 2, true); ctx.closePath(); ctx.fill(); } }