├── .Xresources ├── .envrc ├── .github └── workflows │ └── make.yml ├── .gitignore ├── FAQ ├── LEGACY ├── LICENSE ├── Makefile ├── README ├── TODO ├── arg.h ├── boxdraw.c ├── boxdraw_data.h ├── config.def.h ├── config.mk ├── icon.h ├── readme.org ├── shell.nix ├── st.1 ├── st.c ├── st.h ├── st.info ├── win.h ├── x.c └── xst.c /.Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/.Xresources -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- 1 | use_nix 2 | -------------------------------------------------------------------------------- /.github/workflows/make.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/.github/workflows/make.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | xst 3 | config.h 4 | .direnv -------------------------------------------------------------------------------- /FAQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/FAQ -------------------------------------------------------------------------------- /LEGACY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/LEGACY -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/TODO -------------------------------------------------------------------------------- /arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/arg.h -------------------------------------------------------------------------------- /boxdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/boxdraw.c -------------------------------------------------------------------------------- /boxdraw_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/boxdraw_data.h -------------------------------------------------------------------------------- /config.def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/config.def.h -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/config.mk -------------------------------------------------------------------------------- /icon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/icon.h -------------------------------------------------------------------------------- /readme.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/readme.org -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/shell.nix -------------------------------------------------------------------------------- /st.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/st.1 -------------------------------------------------------------------------------- /st.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/st.c -------------------------------------------------------------------------------- /st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/st.h -------------------------------------------------------------------------------- /st.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/st.info -------------------------------------------------------------------------------- /win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/win.h -------------------------------------------------------------------------------- /x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/x.c -------------------------------------------------------------------------------- /xst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnotclub/xst/HEAD/xst.c --------------------------------------------------------------------------------