├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── Makefile ├── PKGBUILD ├── Pictures └── terminal.png ├── README.md ├── dollarskip.c └── install.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh linguist-detectable=false 2 | 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanMachine1/DollarSkip/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanMachine1/DollarSkip/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanMachine1/DollarSkip/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanMachine1/DollarSkip/HEAD/Makefile -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanMachine1/DollarSkip/HEAD/PKGBUILD -------------------------------------------------------------------------------- /Pictures/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanMachine1/DollarSkip/HEAD/Pictures/terminal.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanMachine1/DollarSkip/HEAD/README.md -------------------------------------------------------------------------------- /dollarskip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanMachine1/DollarSkip/HEAD/dollarskip.c -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleanMachine1/DollarSkip/HEAD/install.sh --------------------------------------------------------------------------------