├── .github └── workflows │ └── test.yml ├── LICENSE ├── README.md ├── data.go ├── generator ├── generator.go └── wordlists │ ├── en │ ├── long.txt │ ├── medium.txt │ └── short.txt │ └── fr │ ├── long.txt │ ├── medium.txt │ └── short.txt ├── go.mod ├── go.sum ├── layouts.go ├── main.go ├── uiMinimal.go └── uiNormal.go /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/README.md -------------------------------------------------------------------------------- /data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/data.go -------------------------------------------------------------------------------- /generator/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/generator/generator.go -------------------------------------------------------------------------------- /generator/wordlists/en/long.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/generator/wordlists/en/long.txt -------------------------------------------------------------------------------- /generator/wordlists/en/medium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/generator/wordlists/en/medium.txt -------------------------------------------------------------------------------- /generator/wordlists/en/short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/generator/wordlists/en/short.txt -------------------------------------------------------------------------------- /generator/wordlists/fr/long.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/generator/wordlists/fr/long.txt -------------------------------------------------------------------------------- /generator/wordlists/fr/medium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/generator/wordlists/fr/medium.txt -------------------------------------------------------------------------------- /generator/wordlists/fr/short.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/generator/wordlists/fr/short.txt -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/go.sum -------------------------------------------------------------------------------- /layouts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/layouts.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/main.go -------------------------------------------------------------------------------- /uiMinimal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/uiMinimal.go -------------------------------------------------------------------------------- /uiNormal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/untemi/unkeyb/HEAD/uiNormal.go --------------------------------------------------------------------------------