├── LICENSE ├── README.md ├── Spaceman-gruvbox.png ├── dwm ├── LICENSE ├── Makefile ├── autostart.sh ├── config.def.h ├── config.def.h.orig ├── config.h ├── config.mk ├── config.mk.orig ├── drw.c ├── drw.h ├── drw.o ├── dwm ├── dwm.1 ├── dwm.1.orig ├── dwm.c ├── dwm.c.orig ├── dwm.o ├── dwm.png ├── fibonacci.c ├── layouts.c ├── movestack.c ├── patches │ ├── dwm-alwayscenter-20200625-f04cac6.diff │ ├── dwm-autostart-20210120-cb3f58a.diff │ ├── dwm-azerty-6.2.diff │ ├── dwm-bar-height-6.2.diff │ ├── dwm-bottomstack-6.1.diff │ ├── dwm-centeredmaster-6.1.diff │ ├── dwm-colorbar-6.2.diff │ ├── dwm-cyclelayouts-20180524-6.2.diff │ ├── dwm-fibonacci-20200418-c82db69.diff │ ├── dwm-gridmode-20170909-ceac8c9.diff │ ├── dwm-keychord-20211210-a786211.diff │ ├── dwm-movestack-20211115-a786211.diff │ ├── dwm-notitle-20210715-138b405.diff │ ├── dwm-pertag-20200914-61bb8b2.diff │ ├── dwm-restartsig-20180523-6.2.diff │ ├── dwm-scratchpads-20200414-728d397b.diff │ ├── dwm-status2d-6.3.diff │ ├── dwm-statusallmons-6.2.diff │ ├── dwm-swallow-6.2.diff │ ├── dwm-underlinetags-6.2.diff │ ├── dwm-uselessgap-20211119-58414bee958f2.diff │ └── dwm-warp-6.2.diff ├── themes │ ├── cherryblossom .h │ ├── darcula.h │ ├── dark.h │ ├── doomone.h │ ├── golden.h │ ├── gruvbox.h │ ├── hornet.h │ ├── nord.h │ ├── onedark.h │ ├── sweetblack.h │ ├── sweetmars.h │ ├── sweetset.h │ ├── tomorrow-cyan.h │ ├── tomorrow-dark.h │ ├── tomorrow-magenta.h │ ├── tomorrow-night.h │ ├── tomorrow.h │ └── vacuous.h ├── transient.c ├── util.c ├── util.h └── util.o ├── dwmbar-colored ├── kitty ├── kitty.conf ├── launch-actions.conf ├── open-actions.conf ├── themes │ ├── Dracula.conf │ ├── OneDark.conf │ ├── Tomorrow.conf │ ├── Tomorrow_Night.conf │ ├── Tomorrow_Night_Blue.conf │ ├── Tomorrow_Night_Bright.conf │ ├── Tomorrow_Night_Eighties.conf │ ├── everforest.conf │ ├── gruvbox-material-dark-hard.conf │ ├── gruvbox_dark.conf │ └── nord.conf └── window-logo.png ├── st ├── FUNDING.yml ├── LICENSE ├── Makefile ├── PKGBUILD ├── README.md ├── Xdefaults ├── arg.h ├── boxdraw.c ├── boxdraw.o ├── boxdraw_data.h ├── config.h ├── config.mk ├── hb.c ├── hb.h ├── hb.o ├── st ├── st-copyout ├── st-urlhandler ├── st.1 ├── st.c ├── st.h ├── st.info ├── st.o ├── win.h ├── x.c └── x.o └── statusbar ├── dwmbar ├── dwmbar-colored ├── dwmbar-emoji ├── simplebar └── themes ├── doom ├── dracula ├── gruvbox ├── sweetdracula ├── sweetmars ├── tomorrow ├── tomorrow-dark └── tomorrow-night /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # gentoo-dwm -------------------------------------------------------------------------------- /Spaceman-gruvbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/Spaceman-gruvbox.png -------------------------------------------------------------------------------- /dwm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/LICENSE -------------------------------------------------------------------------------- /dwm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/Makefile -------------------------------------------------------------------------------- /dwm/autostart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/autostart.sh -------------------------------------------------------------------------------- /dwm/config.def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/config.def.h -------------------------------------------------------------------------------- /dwm/config.def.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/config.def.h.orig -------------------------------------------------------------------------------- /dwm/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/config.h -------------------------------------------------------------------------------- /dwm/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/config.mk -------------------------------------------------------------------------------- /dwm/config.mk.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/config.mk.orig -------------------------------------------------------------------------------- /dwm/drw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/drw.c -------------------------------------------------------------------------------- /dwm/drw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/drw.h -------------------------------------------------------------------------------- /dwm/drw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/drw.o -------------------------------------------------------------------------------- /dwm/dwm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/dwm -------------------------------------------------------------------------------- /dwm/dwm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/dwm.1 -------------------------------------------------------------------------------- /dwm/dwm.1.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/dwm.1.orig -------------------------------------------------------------------------------- /dwm/dwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/dwm.c -------------------------------------------------------------------------------- /dwm/dwm.c.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/dwm.c.orig -------------------------------------------------------------------------------- /dwm/dwm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/dwm.o -------------------------------------------------------------------------------- /dwm/dwm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/dwm.png -------------------------------------------------------------------------------- /dwm/fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/fibonacci.c -------------------------------------------------------------------------------- /dwm/layouts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/layouts.c -------------------------------------------------------------------------------- /dwm/movestack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/movestack.c -------------------------------------------------------------------------------- /dwm/patches/dwm-alwayscenter-20200625-f04cac6.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-alwayscenter-20200625-f04cac6.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-autostart-20210120-cb3f58a.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-autostart-20210120-cb3f58a.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-azerty-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-azerty-6.2.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-bar-height-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-bar-height-6.2.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-bottomstack-6.1.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-bottomstack-6.1.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-centeredmaster-6.1.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-centeredmaster-6.1.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-colorbar-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-colorbar-6.2.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-cyclelayouts-20180524-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-cyclelayouts-20180524-6.2.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-fibonacci-20200418-c82db69.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-fibonacci-20200418-c82db69.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-gridmode-20170909-ceac8c9.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-gridmode-20170909-ceac8c9.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-keychord-20211210-a786211.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-keychord-20211210-a786211.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-movestack-20211115-a786211.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-movestack-20211115-a786211.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-notitle-20210715-138b405.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-notitle-20210715-138b405.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-pertag-20200914-61bb8b2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-pertag-20200914-61bb8b2.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-restartsig-20180523-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-restartsig-20180523-6.2.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-scratchpads-20200414-728d397b.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-scratchpads-20200414-728d397b.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-status2d-6.3.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-status2d-6.3.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-statusallmons-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-statusallmons-6.2.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-swallow-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-swallow-6.2.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-underlinetags-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-underlinetags-6.2.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-uselessgap-20211119-58414bee958f2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-uselessgap-20211119-58414bee958f2.diff -------------------------------------------------------------------------------- /dwm/patches/dwm-warp-6.2.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/patches/dwm-warp-6.2.diff -------------------------------------------------------------------------------- /dwm/themes/cherryblossom .h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/cherryblossom .h -------------------------------------------------------------------------------- /dwm/themes/darcula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/darcula.h -------------------------------------------------------------------------------- /dwm/themes/dark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/dark.h -------------------------------------------------------------------------------- /dwm/themes/doomone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/doomone.h -------------------------------------------------------------------------------- /dwm/themes/golden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/golden.h -------------------------------------------------------------------------------- /dwm/themes/gruvbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/gruvbox.h -------------------------------------------------------------------------------- /dwm/themes/hornet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/hornet.h -------------------------------------------------------------------------------- /dwm/themes/nord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/nord.h -------------------------------------------------------------------------------- /dwm/themes/onedark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/onedark.h -------------------------------------------------------------------------------- /dwm/themes/sweetblack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/sweetblack.h -------------------------------------------------------------------------------- /dwm/themes/sweetmars.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/sweetmars.h -------------------------------------------------------------------------------- /dwm/themes/sweetset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/sweetset.h -------------------------------------------------------------------------------- /dwm/themes/tomorrow-cyan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/tomorrow-cyan.h -------------------------------------------------------------------------------- /dwm/themes/tomorrow-dark.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/tomorrow-dark.h -------------------------------------------------------------------------------- /dwm/themes/tomorrow-magenta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/tomorrow-magenta.h -------------------------------------------------------------------------------- /dwm/themes/tomorrow-night.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/tomorrow-night.h -------------------------------------------------------------------------------- /dwm/themes/tomorrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/tomorrow.h -------------------------------------------------------------------------------- /dwm/themes/vacuous.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/themes/vacuous.h -------------------------------------------------------------------------------- /dwm/transient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/transient.c -------------------------------------------------------------------------------- /dwm/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/util.c -------------------------------------------------------------------------------- /dwm/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/util.h -------------------------------------------------------------------------------- /dwm/util.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwm/util.o -------------------------------------------------------------------------------- /dwmbar-colored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/dwmbar-colored -------------------------------------------------------------------------------- /kitty/kitty.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/kitty.conf -------------------------------------------------------------------------------- /kitty/launch-actions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/launch-actions.conf -------------------------------------------------------------------------------- /kitty/open-actions.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/open-actions.conf -------------------------------------------------------------------------------- /kitty/themes/Dracula.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/themes/Dracula.conf -------------------------------------------------------------------------------- /kitty/themes/OneDark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/themes/OneDark.conf -------------------------------------------------------------------------------- /kitty/themes/Tomorrow.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/themes/Tomorrow.conf -------------------------------------------------------------------------------- /kitty/themes/Tomorrow_Night.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/themes/Tomorrow_Night.conf -------------------------------------------------------------------------------- /kitty/themes/Tomorrow_Night_Blue.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/themes/Tomorrow_Night_Blue.conf -------------------------------------------------------------------------------- /kitty/themes/Tomorrow_Night_Bright.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/themes/Tomorrow_Night_Bright.conf -------------------------------------------------------------------------------- /kitty/themes/Tomorrow_Night_Eighties.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/themes/Tomorrow_Night_Eighties.conf -------------------------------------------------------------------------------- /kitty/themes/everforest.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/themes/everforest.conf -------------------------------------------------------------------------------- /kitty/themes/gruvbox-material-dark-hard.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/themes/gruvbox-material-dark-hard.conf -------------------------------------------------------------------------------- /kitty/themes/gruvbox_dark.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/themes/gruvbox_dark.conf -------------------------------------------------------------------------------- /kitty/themes/nord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/themes/nord.conf -------------------------------------------------------------------------------- /kitty/window-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/kitty/window-logo.png -------------------------------------------------------------------------------- /st/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/FUNDING.yml -------------------------------------------------------------------------------- /st/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/LICENSE -------------------------------------------------------------------------------- /st/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/Makefile -------------------------------------------------------------------------------- /st/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/PKGBUILD -------------------------------------------------------------------------------- /st/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/README.md -------------------------------------------------------------------------------- /st/Xdefaults: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/Xdefaults -------------------------------------------------------------------------------- /st/arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/arg.h -------------------------------------------------------------------------------- /st/boxdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/boxdraw.c -------------------------------------------------------------------------------- /st/boxdraw.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/boxdraw.o -------------------------------------------------------------------------------- /st/boxdraw_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/boxdraw_data.h -------------------------------------------------------------------------------- /st/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/config.h -------------------------------------------------------------------------------- /st/config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/config.mk -------------------------------------------------------------------------------- /st/hb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/hb.c -------------------------------------------------------------------------------- /st/hb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/hb.h -------------------------------------------------------------------------------- /st/hb.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/hb.o -------------------------------------------------------------------------------- /st/st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/st -------------------------------------------------------------------------------- /st/st-copyout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/st-copyout -------------------------------------------------------------------------------- /st/st-urlhandler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/st-urlhandler -------------------------------------------------------------------------------- /st/st.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/st.1 -------------------------------------------------------------------------------- /st/st.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/st.c -------------------------------------------------------------------------------- /st/st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/st.h -------------------------------------------------------------------------------- /st/st.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/st.info -------------------------------------------------------------------------------- /st/st.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/st.o -------------------------------------------------------------------------------- /st/win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/win.h -------------------------------------------------------------------------------- /st/x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/x.c -------------------------------------------------------------------------------- /st/x.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/st/x.o -------------------------------------------------------------------------------- /statusbar/dwmbar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/statusbar/dwmbar -------------------------------------------------------------------------------- /statusbar/dwmbar-colored: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/statusbar/dwmbar-colored -------------------------------------------------------------------------------- /statusbar/dwmbar-emoji: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/statusbar/dwmbar-emoji -------------------------------------------------------------------------------- /statusbar/simplebar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/statusbar/simplebar -------------------------------------------------------------------------------- /statusbar/themes/doom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/statusbar/themes/doom -------------------------------------------------------------------------------- /statusbar/themes/dracula: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/statusbar/themes/dracula -------------------------------------------------------------------------------- /statusbar/themes/gruvbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/statusbar/themes/gruvbox -------------------------------------------------------------------------------- /statusbar/themes/sweetdracula: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/statusbar/themes/sweetdracula -------------------------------------------------------------------------------- /statusbar/themes/sweetmars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/statusbar/themes/sweetmars -------------------------------------------------------------------------------- /statusbar/themes/tomorrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/statusbar/themes/tomorrow -------------------------------------------------------------------------------- /statusbar/themes/tomorrow-dark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/statusbar/themes/tomorrow-dark -------------------------------------------------------------------------------- /statusbar/themes/tomorrow-night: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kavi-Arya/gentoo-dwm/HEAD/statusbar/themes/tomorrow-night --------------------------------------------------------------------------------