all repos — dwm @ 86f7dd830615fb6f3315ffd2fdb6dd504a3dc6bf

fork of suckless dynamic window manager

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.
la-ninpre leobrekalini@gmail.com
Sun, 31 Oct 2021 00:56:33 +0300
commit

86f7dd830615fb6f3315ffd2fdb6dd504a3dc6bf

parent

6b939eb71658c4fe0fcba137209d3ce2914c713e

3 files changed, 17 insertions(+), 6 deletions(-)

jump to
M README.mdREADME.md

@@ -17,6 +17,14 @@ ## requirements

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
M config.def.hconfig.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 @@ };

/* 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 window */

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 */
M dwm.cdwm.c

@@ -1117,7 +1117,7 @@ for (c = m->clients; c; c = c->next)

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); }