├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── circle.yml ├── gone.rb ├── goreleaser.yml ├── main.go ├── painter ├── font.go └── painter.go ├── srot.png ├── state ├── state.go └── state_test.go ├── util ├── notifier.go └── timer.go └── vendor ├── github.com ├── 0xAX │ └── notificator │ │ ├── LICENSE │ │ ├── README.md │ │ └── notification.go ├── mattn │ └── go-runewidth │ │ ├── LICENSE │ │ ├── README.mkd │ │ ├── runewidth.go │ │ ├── runewidth_js.go │ │ ├── runewidth_posix.go │ │ └── runewidth_windows.go └── nsf │ └── termbox-go │ ├── AUTHORS │ ├── LICENSE │ ├── README.md │ ├── api.go │ ├── api_common.go │ ├── api_windows.go │ ├── collect_terminfo.py │ ├── syscalls_darwin.go │ ├── syscalls_darwin_amd64.go │ ├── syscalls_dragonfly.go │ ├── syscalls_freebsd.go │ ├── syscalls_linux.go │ ├── syscalls_netbsd.go │ ├── syscalls_openbsd.go │ ├── syscalls_windows.go │ ├── termbox.go │ ├── termbox_common.go │ ├── termbox_windows.go │ ├── terminfo.go │ └── terminfo_builtin.go └── vendor.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/README.md -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/circle.yml -------------------------------------------------------------------------------- /gone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/gone.rb -------------------------------------------------------------------------------- /goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/goreleaser.yml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/main.go -------------------------------------------------------------------------------- /painter/font.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/painter/font.go -------------------------------------------------------------------------------- /painter/painter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/painter/painter.go -------------------------------------------------------------------------------- /srot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/srot.png -------------------------------------------------------------------------------- /state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/state/state.go -------------------------------------------------------------------------------- /state/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/state/state_test.go -------------------------------------------------------------------------------- /util/notifier.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/util/notifier.go -------------------------------------------------------------------------------- /util/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/util/timer.go -------------------------------------------------------------------------------- /vendor/github.com/0xAX/notificator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/0xAX/notificator/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/0xAX/notificator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/0xAX/notificator/README.md -------------------------------------------------------------------------------- /vendor/github.com/0xAX/notificator/notification.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/0xAX/notificator/notification.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/mattn/go-runewidth/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/mattn/go-runewidth/README.mkd -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/runewidth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/mattn/go-runewidth/runewidth.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/runewidth_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/mattn/go-runewidth/runewidth_js.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/runewidth_posix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/mattn/go-runewidth/runewidth_posix.go -------------------------------------------------------------------------------- /vendor/github.com/mattn/go-runewidth/runewidth_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/mattn/go-runewidth/runewidth_windows.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/AUTHORS -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/README.md -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/api.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/api_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/api_common.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/api_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/api_windows.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/collect_terminfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/collect_terminfo.py -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/syscalls_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/syscalls_darwin.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/syscalls_darwin_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/syscalls_darwin_amd64.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/syscalls_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/syscalls_dragonfly.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/syscalls_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/syscalls_freebsd.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/syscalls_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/syscalls_linux.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/syscalls_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/syscalls_netbsd.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/syscalls_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/syscalls_openbsd.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/syscalls_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/syscalls_windows.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/termbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/termbox.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/termbox_common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/termbox_common.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/termbox_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/termbox_windows.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/terminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/terminfo.go -------------------------------------------------------------------------------- /vendor/github.com/nsf/termbox-go/terminfo_builtin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/github.com/nsf/termbox-go/terminfo_builtin.go -------------------------------------------------------------------------------- /vendor/vendor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaumebreton/gone/HEAD/vendor/vendor.json --------------------------------------------------------------------------------