aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorla-ninpre <leobrekalini@gmail.com>2021-10-31 00:56:33 +0300
committerla-ninpre <leobrekalini@gmail.com>2021-10-31 00:56:33 +0300
commit86f7dd830615fb6f3315ffd2fdb6dd504a3dc6bf (patch)
tree63704e98c5c8677d9eda1b3958fa85f5ce04a845
parent6b939eb71658c4fe0fcba137209d3ce2914c713e (diff)
downloaddwm-86f7dd830615fb6f3315ffd2fdb6dd504a3dc6bf.tar.gz
dwm-86f7dd830615fb6f3315ffd2fdb6dd504a3dc6bf.zip
mi wile lukin e sitelen pona la mi pali e ni
sina o alasa e sitelen pu lukin. lipu `README.md` li jo e nasin alasa.
-rw-r--r--README.md8
-rw-r--r--config.def.h13
-rw-r--r--dwm.c2
3 files changed, 17 insertions, 6 deletions
diff --git a/README.md b/README.md
index 43d4bd0..f209e9a 100644
--- a/README.md
+++ b/README.md
@@ -17,6 +17,14 @@ dwm is an extremely fast, small, and dynamic window manager for x.
in order to build dwm you need the xlib header files.
+used fonts:
+
+* lato
+* jetbrains mono
+* [pu lukin][2]
+
+[2]:https://greenguy5294.github.io/linjapipulukin/
+
## installation
edit `config.mk` to match your local setup (dwm is installed into the
diff --git a/config.def.h b/config.def.h
index b729f59..3a3f1dd 100644
--- a/config.def.h
+++ b/config.def.h
@@ -5,7 +5,7 @@ static const unsigned int borderpx = 1; /* border pixel of windows */
static const unsigned int snap = 32; /* snap pixel */
static const int showbar = 1; /* 0 means no bar */
static const int topbar = 1; /* 0 means bottom bar */
-static const char *fonts[] = { "Lato Medium:size=11" };
+static const char *fonts[] = { "Lato Medium:size=11", "PuLukin:size=16:hinting=true:antialias=true" };
static const char dmenufont[] = "JetBrains Mono Medium:size=11";
static const char norm_fg[] = "#cadcde";
static const char norm_bg[] = "#19191a";
@@ -21,7 +21,10 @@ static const char *colors[][3] = {
/* tagging */
static const char *tags[] = {
- "sona", "musi", "pali", "lipu", "poki", "toki", "suli", "lukin", "ante"
+ /* latin */
+/* "sona", "musi", "pali", "lipu", "poki", "toki", "suli", "lukin", "ante" */
+ /* pu lukin */
+ "", "", "", "", "", "", "", "", ""
};
static const Rule rules[] = {
@@ -46,9 +49,9 @@ static const int lockfullscreen = 1; /* 1 will force focus on the fullscreen
static const Layout layouts[] = {
/* symbol arrange function */
- { "[]=", tile }, /* first entry is default */
- { "><>", NULL }, /* no layout function means floating behavior */
- { "[M]", monocle },
+ { "" /* leko */, tile }, /* first entry is default */
+ { "" /* kon */, NULL }, /* no layout function means floating behavior */
+ { "" /* wan */, monocle },
};
/* key definitions */
diff --git a/dwm.c b/dwm.c
index 531ee5c..3c58fb4 100644
--- a/dwm.c
+++ b/dwm.c
@@ -1117,7 +1117,7 @@ monocle(Monitor *m)
if (ISVISIBLE(c))
n++;
if (n > 0) /* override layout symbol */
- snprintf(m->ltsymbol, sizeof m->ltsymbol, "[%d]", n);
+ snprintf(m->ltsymbol, sizeof m->ltsymbol, "%d" /* nanpa n */, n);
for (c = nexttiled(m->clients); c; c = nexttiled(c->next))
resize(c, m->wx, m->wy, m->ww - 2 * c->bw, m->wh - 2 * c->bw, 0);
}