├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── ayushnix-upi.png ├── completion ├── tessen.bash-completion └── tessen.fish-completion ├── config ├── explicit_path.patch ├── man ├── tessen.1.scd └── tessen.5.scd └── tessen /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/README.md -------------------------------------------------------------------------------- /ayushnix-upi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/ayushnix-upi.png -------------------------------------------------------------------------------- /completion/tessen.bash-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/completion/tessen.bash-completion -------------------------------------------------------------------------------- /completion/tessen.fish-completion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/completion/tessen.fish-completion -------------------------------------------------------------------------------- /config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/config -------------------------------------------------------------------------------- /explicit_path.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/explicit_path.patch -------------------------------------------------------------------------------- /man/tessen.1.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/man/tessen.1.scd -------------------------------------------------------------------------------- /man/tessen.5.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/man/tessen.5.scd -------------------------------------------------------------------------------- /tessen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ayushnix/tessen/HEAD/tessen --------------------------------------------------------------------------------