├── .github ├── CONTRIBUTING ├── FUNDING.yml └── workflows │ └── codacy-analysis.yml ├── .gitignore ├── CHANGELOG ├── LICENSE ├── Makefile ├── README ├── config.h ├── xwm.1 ├── xwm.c └── xwm.h /.github/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpcpc/xwm/HEAD/.github/CONTRIBUTING -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpcpc/xwm/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/codacy-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpcpc/xwm/HEAD/.github/workflows/codacy-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | xwm 2 | *.a 3 | *.o 4 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpcpc/xwm/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpcpc/xwm/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpcpc/xwm/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpcpc/xwm/HEAD/README -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpcpc/xwm/HEAD/config.h -------------------------------------------------------------------------------- /xwm.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpcpc/xwm/HEAD/xwm.1 -------------------------------------------------------------------------------- /xwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpcpc/xwm/HEAD/xwm.c -------------------------------------------------------------------------------- /xwm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcpcpc/xwm/HEAD/xwm.h --------------------------------------------------------------------------------