From 56361dda8684a5492e81e11d0d27e3012b8ec8c0 Mon Sep 17 00:00:00 2001 From: darksignal7 Date: Sun, 5 Oct 2025 21:45:10 +0300 Subject: [PATCH] using font in appearance --- .config/quickshell/ii/modules/background/CookieClock.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/quickshell/ii/modules/background/CookieClock.qml b/.config/quickshell/ii/modules/background/CookieClock.qml index cf31f21bf..011cf8882 100644 --- a/.config/quickshell/ii/modules/background/CookieClock.qml +++ b/.config/quickshell/ii/modules/background/CookieClock.qml @@ -348,7 +348,7 @@ Item { onPaint: { var ctx = getContext("2d"); ctx.clearRect(0,0,width,height); - ctx.font = "700 30px gabarito"; + ctx.font = "700 30px " + Appearance.font.family.title; var text = DateTime.date.substring(0,3) + " " + DateTime.date.substring(4,7); var radius = 78;