From b3266306afe8f7b63b205a8b1f93a2bd6812f891 Mon Sep 17 00:00:00 2001 From: rope Date: Wed, 27 May 2026 10:17:18 +0100 Subject: [PATCH] quickshell: rewrite bottom-right concave ear from scratch Co-Authored-By: Claude Opus 4.6 --- settings/hyprland.nix | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index b2865df..96f3083 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -1304,9 +1304,11 @@ 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.closePath(); ctx.fill(); + ctx.moveTo(0, 8); + ctx.lineTo(8, 8); + ctx.lineTo(8, 0); + ctx.arc(0, 0, 8, 0, Math.PI / 2, false); + ctx.fill(); } } }