From 64662eac26b1e6338c2980e57022f49e84907b7e Mon Sep 17 00:00:00 2001 From: Vidhu Kant Sharma Date: Sat, 10 May 2025 20:02:19 +0530 Subject: japanese symbols for tags --- .gitignore | 2 ++ config.def.h | 11 +++-------- dwm | Bin 62840 -> 0 bytes dwm.o | Bin 58112 -> 0 bytes 4 files changed, 5 insertions(+), 8 deletions(-) create mode 100644 .gitignore delete mode 100755 dwm delete mode 100644 dwm.o diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3c51b12 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/dwm +/dwm.o diff --git a/config.def.h b/config.def.h index c128ea2..a2e11d9 100644 --- a/config.def.h +++ b/config.def.h @@ -3,21 +3,16 @@ static const unsigned int snap = 32; static const int showbar = 1; static const int topbar = 1; static const int user_bh = 32; -static const char *fonts[] = { "Noto Sans:size=16" }; +static const char *fonts[] = { "Noto Sans CJK JP:size=14" }; static const unsigned int gappx = 8; -static const char col_gray1[] = "#222222"; -static const char col_gray2[] = "#444444"; -static const char col_gray3[] = "#bbbbbb"; -static const char col_gray4[] = "#eeeeee"; -static const char col_cyan[] = "#005577"; static const char *colors[][3] = { /* fg bg border */ - [SchemeNorm] = { col_gray3, "#282c34", "#282c34" }, + [SchemeNorm] = { "#bbbbbb", "#282c34", "#282c34" }, [SchemeSel] = { "#232627", "#7874c2", "#c678dd" }, }; /* tagging */ -static const char *tags[] = { "1", "2", "3", "4", "5", "6", "7", "8", "9", "0" }; +static const char *tags[] = { "一", "二", "三", "四", "五", "六", "七", "八", "九", "十" }; static const Rule rules[] = { /* xprop(1): diff --git a/dwm b/dwm deleted file mode 100755 index 3671921..0000000 Binary files a/dwm and /dev/null differ diff --git a/dwm.o b/dwm.o deleted file mode 100644 index 50e78db..0000000 Binary files a/dwm.o and /dev/null differ -- cgit v1.2.3