├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── README_cn.md ├── config.h ├── config.mk ├── drw.c ├── drw.h ├── dwm.1 ├── dwm.c ├── dwm.png ├── patches ├── alphasystray.diff ├── dwm-autostart-20161205-bb3bd6f.diff ├── dwm-awesomebar-20191003-80e2a76.diff ├── dwm-focusadjacenttag-6.0.diff ├── dwm-fullscreen-6.2.diff ├── dwm-hide-and-restore.diff ├── dwm-hide_vacant_tags-6.2.diff ├── dwm-noborder-6.2.diff ├── dwm-pertag-20170513-ceac8c9.diff ├── dwm-r1522-viewontag.diff ├── dwm-rotatestack-20161021-ab9571b.diff ├── dwm-scratchpad-6.2.diff └── dwm-vanitygaps-20190508-6.2.diff ├── transient.c ├── util.c └── util.h /.gitignore: -------------------------------------------------------------------------------- 1 | dwm 2 | *.o 3 | .ccls-cache/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/README.md -------------------------------------------------------------------------------- /README_cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/README_cn.md -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/config.h -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/config.mk -------------------------------------------------------------------------------- /drw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/drw.c -------------------------------------------------------------------------------- /drw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/drw.h -------------------------------------------------------------------------------- /dwm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/dwm.1 -------------------------------------------------------------------------------- /dwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/dwm.c -------------------------------------------------------------------------------- /dwm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/dwm.png -------------------------------------------------------------------------------- /patches/alphasystray.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/patches/alphasystray.diff -------------------------------------------------------------------------------- /patches/dwm-autostart-20161205-bb3bd6f.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/patches/dwm-autostart-20161205-bb3bd6f.diff -------------------------------------------------------------------------------- /patches/dwm-awesomebar-20191003-80e2a76.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/patches/dwm-awesomebar-20191003-80e2a76.diff -------------------------------------------------------------------------------- /patches/dwm-focusadjacenttag-6.0.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/patches/dwm-focusadjacenttag-6.0.diff -------------------------------------------------------------------------------- /patches/dwm-fullscreen-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/patches/dwm-fullscreen-6.2.diff -------------------------------------------------------------------------------- /patches/dwm-hide-and-restore.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/patches/dwm-hide-and-restore.diff -------------------------------------------------------------------------------- /patches/dwm-hide_vacant_tags-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/patches/dwm-hide_vacant_tags-6.2.diff -------------------------------------------------------------------------------- /patches/dwm-noborder-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/patches/dwm-noborder-6.2.diff -------------------------------------------------------------------------------- /patches/dwm-pertag-20170513-ceac8c9.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/patches/dwm-pertag-20170513-ceac8c9.diff -------------------------------------------------------------------------------- /patches/dwm-r1522-viewontag.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/patches/dwm-r1522-viewontag.diff -------------------------------------------------------------------------------- /patches/dwm-rotatestack-20161021-ab9571b.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/patches/dwm-rotatestack-20161021-ab9571b.diff -------------------------------------------------------------------------------- /patches/dwm-scratchpad-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/patches/dwm-scratchpad-6.2.diff -------------------------------------------------------------------------------- /patches/dwm-vanitygaps-20190508-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/patches/dwm-vanitygaps-20190508-6.2.diff -------------------------------------------------------------------------------- /transient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/transient.c -------------------------------------------------------------------------------- /util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/util.c -------------------------------------------------------------------------------- /util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theniceboy/dwm/HEAD/util.h --------------------------------------------------------------------------------