From 798d6a30e9530de2ab82daa40f60821574b0bc02 Mon Sep 17 00:00:00 2001 From: Nytreon Date: Tue, 30 Dec 2025 03:08:44 -0600 Subject: [PATCH] Update layout.h MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Using 󰃇 is kinda weird imo.... please use O instead as it makes a lot more sense thanks! --- src/layout/layout.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layout/layout.h b/src/layout/layout.h index 169ab11..c5b5103 100644 --- a/src/layout/layout.h +++ b/src/layout/layout.h @@ -14,7 +14,7 @@ static void vertical_deck(Monitor *mon); static void tgmix(Monitor *m); /* layout(s) */ -Layout overviewlayout = {"󰃇", overview, "overview"}; +Layout overviewlayout = {"O", overview, "overview"}; enum { SCROLLER, @@ -47,4 +47,4 @@ Layout layouts[] = { {"VG", vertical_grid, "vertical_grid", VERTICAL_GRID}, // 垂直格子布局 {"VK", vertical_deck, "vertical_deck", VERTICAL_DECK}, // 垂直卡片布局 {"TG", tgmix, "tgmix", TGMIX}, // 混合布局 -}; \ No newline at end of file +};