From 88c5aa426168f5fb0e0be3507c42c97e6f29daa4 Mon Sep 17 00:00:00 2001 From: rope Date: Wed, 27 May 2026 10:09:59 +0100 Subject: [PATCH] quickshell: fix bottom-right concave ear arc direction Co-Authored-By: Claude Opus 4.6 --- settings/hyprland.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 2e83ba6..0942859 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -1305,7 +1305,7 @@ in ctx.fillStyle = Theme.barBg; ctx.beginPath(); ctx.moveTo(8, 0); ctx.lineTo(8, 8); ctx.lineTo(0, 8); - ctx.arc(8, 8, 8, Math.PI, -Math.PI / 2, false); + ctx.arc(0, 0, 8, Math.PI / 2, 0, true); ctx.closePath(); ctx.fill(); } }