├── .dockerignore ├── .github ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── .goreleaser.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── cmd ├── fetch.go ├── main.go └── root.go ├── dev-scripts └── clean-build-all.sh ├── go.mod ├── go.sum ├── log └── debug.go ├── main.go ├── makefile ├── todos.md ├── types └── text_source.go ├── ui ├── cursor.go ├── endgame.go ├── game.go ├── global_timer.go ├── gradient.go ├── loading.go ├── settings.go ├── spinner.go ├── startscreen.go ├── styles.go ├── text.go ├── text_source.go ├── theme.go ├── welcome.go └── word.go └── utils ├── config.go ├── text.go └── theme.go /.dockerignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | go-typer 3 | run 4 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | go-typer 3 | run 4 | colorschemes 5 | -------------------------------------------------------------------------------- /.goreleaser.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/.goreleaser.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/README.md -------------------------------------------------------------------------------- /cmd/fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/cmd/fetch.go -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/cmd/main.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/cmd/root.go -------------------------------------------------------------------------------- /dev-scripts/clean-build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/dev-scripts/clean-build-all.sh -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/go.sum -------------------------------------------------------------------------------- /log/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/log/debug.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/main.go -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/makefile -------------------------------------------------------------------------------- /todos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/todos.md -------------------------------------------------------------------------------- /types/text_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/types/text_source.go -------------------------------------------------------------------------------- /ui/cursor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/cursor.go -------------------------------------------------------------------------------- /ui/endgame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/endgame.go -------------------------------------------------------------------------------- /ui/game.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/game.go -------------------------------------------------------------------------------- /ui/global_timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/global_timer.go -------------------------------------------------------------------------------- /ui/gradient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/gradient.go -------------------------------------------------------------------------------- /ui/loading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/loading.go -------------------------------------------------------------------------------- /ui/settings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/settings.go -------------------------------------------------------------------------------- /ui/spinner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/spinner.go -------------------------------------------------------------------------------- /ui/startscreen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/startscreen.go -------------------------------------------------------------------------------- /ui/styles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/styles.go -------------------------------------------------------------------------------- /ui/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/text.go -------------------------------------------------------------------------------- /ui/text_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/text_source.go -------------------------------------------------------------------------------- /ui/theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/theme.go -------------------------------------------------------------------------------- /ui/welcome.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/welcome.go -------------------------------------------------------------------------------- /ui/word.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/ui/word.go -------------------------------------------------------------------------------- /utils/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/utils/config.go -------------------------------------------------------------------------------- /utils/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/utils/text.go -------------------------------------------------------------------------------- /utils/theme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prime-run/go-typer/HEAD/utils/theme.go --------------------------------------------------------------------------------