├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── arg.h ├── boxdraw.c ├── boxdraw_data.h ├── config.def.h ├── config.mk ├── default.nix ├── flake.lock ├── flake.nix ├── hb.c ├── hb.h ├── normalMode.c ├── normalMode.h ├── st-copyout ├── st-urlhandler ├── st.1 ├── st.c ├── st.desktop ├── st.h ├── st.info ├── st.png ├── utils.h ├── win.h ├── x.c └── xresources /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/README.md -------------------------------------------------------------------------------- /arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/arg.h -------------------------------------------------------------------------------- /boxdraw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/boxdraw.c -------------------------------------------------------------------------------- /boxdraw_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/boxdraw_data.h -------------------------------------------------------------------------------- /config.def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/config.def.h -------------------------------------------------------------------------------- /config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/config.mk -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/flake.nix -------------------------------------------------------------------------------- /hb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/hb.c -------------------------------------------------------------------------------- /hb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/hb.h -------------------------------------------------------------------------------- /normalMode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/normalMode.c -------------------------------------------------------------------------------- /normalMode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/normalMode.h -------------------------------------------------------------------------------- /st-copyout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/st-copyout -------------------------------------------------------------------------------- /st-urlhandler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/st-urlhandler -------------------------------------------------------------------------------- /st.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/st.1 -------------------------------------------------------------------------------- /st.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/st.c -------------------------------------------------------------------------------- /st.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/st.desktop -------------------------------------------------------------------------------- /st.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/st.h -------------------------------------------------------------------------------- /st.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/st.info -------------------------------------------------------------------------------- /st.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/st.png -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/utils.h -------------------------------------------------------------------------------- /win.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/win.h -------------------------------------------------------------------------------- /x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/x.c -------------------------------------------------------------------------------- /xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/siduck/st/HEAD/xresources --------------------------------------------------------------------------------