Skip to content

Instantly share code, notes, and snippets.

@sistematico
Created January 26, 2023 13:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sistematico/0da15bf1539a1ece0017808397b9f8df to your computer and use it in GitHub Desktop.
Save sistematico/0da15bf1539a1ece0017808397b9f8df to your computer and use it in GitHub Desktop.
dwm hide tag indicators
diff --git a/dwm.c b/dwm.c
index e5efb6a..d9fe250 100644
--- a/dwm.c
+++ b/dwm.c
@@ -725,10 +725,6 @@ drawbar(Monitor *m)
w = TEXTW(tags[i]);
drw_setscheme(drw, scheme[m->tagset[m->seltags] & 1 << i ? SchemeSel : SchemeNorm]);
drw_text(drw, x, 0, w, bh, lrpad / 2, tags[i], urg & 1 << i);
- if (occ & 1 << i)
- drw_rect(drw, x + boxs, boxs, boxw, boxw,
- m == selmon && selmon->sel && selmon->sel->tags & 1 << i,
- urg & 1 << i);
x += w;
}
w = TEXTW(m->ltsymbol);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment