├── LICENSE ├── README.md ├── capture.go ├── generator.go ├── image └── xwd │ └── reader.go ├── main.go ├── play.go ├── tests ├── data │ ├── test.png │ └── test.xwd └── worker_test.go ├── wercker.yml └── worker.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/ttygif/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/ttygif/HEAD/README.md -------------------------------------------------------------------------------- /capture.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/ttygif/HEAD/capture.go -------------------------------------------------------------------------------- /generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/ttygif/HEAD/generator.go -------------------------------------------------------------------------------- /image/xwd/reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/ttygif/HEAD/image/xwd/reader.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/ttygif/HEAD/main.go -------------------------------------------------------------------------------- /play.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/ttygif/HEAD/play.go -------------------------------------------------------------------------------- /tests/data/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/ttygif/HEAD/tests/data/test.png -------------------------------------------------------------------------------- /tests/data/test.xwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/ttygif/HEAD/tests/data/test.xwd -------------------------------------------------------------------------------- /tests/worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/ttygif/HEAD/tests/worker_test.go -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/ttygif/HEAD/wercker.yml -------------------------------------------------------------------------------- /worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sugyan/ttygif/HEAD/worker.go --------------------------------------------------------------------------------