├── .github └── workflows │ └── container.yml ├── .gitignore ├── CHANGELOG.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── docs └── assets │ └── logo_and_name.png └── rootfs ├── viceroycc ├── viceroycc-darwin ├── viceroycc-freebsd ├── viceroycc-linux └── viceroycc-windows /.github/workflows/container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfratto/viceroy/HEAD/.github/workflows/container.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfratto/viceroy/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfratto/viceroy/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfratto/viceroy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfratto/viceroy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfratto/viceroy/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/logo_and_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfratto/viceroy/HEAD/docs/assets/logo_and_name.png -------------------------------------------------------------------------------- /rootfs/viceroycc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfratto/viceroy/HEAD/rootfs/viceroycc -------------------------------------------------------------------------------- /rootfs/viceroycc-darwin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfratto/viceroy/HEAD/rootfs/viceroycc-darwin -------------------------------------------------------------------------------- /rootfs/viceroycc-freebsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfratto/viceroy/HEAD/rootfs/viceroycc-freebsd -------------------------------------------------------------------------------- /rootfs/viceroycc-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfratto/viceroy/HEAD/rootfs/viceroycc-linux -------------------------------------------------------------------------------- /rootfs/viceroycc-windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rfratto/viceroy/HEAD/rootfs/viceroycc-windows --------------------------------------------------------------------------------