foxygit / sxbar Log in
commit 658153addf91230e145ae935fc950875db2fa1be
Author:     Abhinav <abhinav.prsai@gmail.com>
AuthorDate: Wed Jul 2 23:50:22 2025 +0100
Commit:     Abhinav <abhinav.prsai@gmail.com>
CommitDate: Wed Jul 2 23:50:22 2025 +0100

    use fixed font

    no support for xft so compile will fail
---
 src/sxbar.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/sxbar.c b/src/sxbar.c
index 9f84b57..f2fcc7e 100644
--- a/src/sxbar.c
+++ b/src/sxbar.c
@@ -317,7 +317,7 @@ void init_defaults(void)
 	config.background_colour = parse_col("#000000");
 	config.foreground_colour = parse_col("#7abccd");
 	config.border_colour = parse_col("#005577");
-	config.font = strdup("Bm437 IBM VGA 8x16");
+	config.font = strdup("fixed");
 	init_modules();
 }