├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── hsetroot.c ├── hsr-outputs.c └── pkg └── arch └── PKGBUILD /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .*.sw[po] 3 | *.o 4 | hsetroot 5 | hsr-outputs 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himdel/hsetroot/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himdel/hsetroot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himdel/hsetroot/HEAD/README.md -------------------------------------------------------------------------------- /hsetroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himdel/hsetroot/HEAD/hsetroot.c -------------------------------------------------------------------------------- /hsr-outputs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himdel/hsetroot/HEAD/hsr-outputs.c -------------------------------------------------------------------------------- /pkg/arch/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/himdel/hsetroot/HEAD/pkg/arch/PKGBUILD --------------------------------------------------------------------------------