From b4e66380371c221da406909b56023df20a5bfea0 Mon Sep 17 00:00:00 2001 From: rope Date: Wed, 27 May 2026 10:03:05 +0100 Subject: [PATCH] quickshell: flip bottom-right concave arc direction Co-Authored-By: Claude Opus 4.6 --- settings/hyprland.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 190b86b..2e83ba6 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -1304,9 +1304,8 @@ in ctx.clearRect(0, 0, 8, 8); ctx.fillStyle = Theme.barBg; ctx.beginPath(); - // Fill top-right triangle with concave arc - ctx.moveTo(8, 0); ctx.lineTo(8, 8); - ctx.arc(0, 0, 8, Math.PI / 2, 0, true); + ctx.moveTo(8, 0); ctx.lineTo(8, 8); ctx.lineTo(0, 8); + ctx.arc(8, 8, 8, Math.PI, -Math.PI / 2, false); ctx.closePath(); ctx.fill(); } }