├── .github └── workflows │ ├── go.yml │ └── notify.yml ├── .gitignore ├── .goreleaser.yml ├── .travis.yml ├── LICENSE ├── README.md ├── assets ├── shelby.gif ├── shelby_logo.png └── shelby_logo.svg ├── docs ├── .nojekyll ├── README.md └── index.html ├── go.mod ├── go.sum ├── main.go └── mods ├── directories.go ├── env_functions.go ├── git.go ├── git_display.go ├── home_functions.go ├── info.go └── shell.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.github/workflows/notify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/.github/workflows/notify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/README.md -------------------------------------------------------------------------------- /assets/shelby.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/assets/shelby.gif -------------------------------------------------------------------------------- /assets/shelby_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/assets/shelby_logo.png -------------------------------------------------------------------------------- /assets/shelby_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/assets/shelby_logo.svg -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/docs/index.html -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/main.go -------------------------------------------------------------------------------- /mods/directories.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/mods/directories.go -------------------------------------------------------------------------------- /mods/env_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/mods/env_functions.go -------------------------------------------------------------------------------- /mods/git.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/mods/git.go -------------------------------------------------------------------------------- /mods/git_display.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/mods/git_display.go -------------------------------------------------------------------------------- /mods/home_functions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/mods/home_functions.go -------------------------------------------------------------------------------- /mods/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/mods/info.go -------------------------------------------------------------------------------- /mods/shell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/athul/shelby/HEAD/mods/shell.go --------------------------------------------------------------------------------