├── .gitignore ├── LICENSE ├── README.md ├── burrow ├── connect.py ├── gui.py ├── home.gopher ├── images ├── back.png ├── favorite.png ├── favorite2.png ├── forward.png ├── forward2.png ├── home.png ├── home2.png └── settings.png └── parser.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/README.md -------------------------------------------------------------------------------- /burrow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/burrow -------------------------------------------------------------------------------- /connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/connect.py -------------------------------------------------------------------------------- /gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/gui.py -------------------------------------------------------------------------------- /home.gopher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/home.gopher -------------------------------------------------------------------------------- /images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/images/back.png -------------------------------------------------------------------------------- /images/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/images/favorite.png -------------------------------------------------------------------------------- /images/favorite2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/images/favorite2.png -------------------------------------------------------------------------------- /images/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/images/forward.png -------------------------------------------------------------------------------- /images/forward2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/images/forward2.png -------------------------------------------------------------------------------- /images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/images/home.png -------------------------------------------------------------------------------- /images/home2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/images/home2.png -------------------------------------------------------------------------------- /images/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/images/settings.png -------------------------------------------------------------------------------- /parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sloumdrone/burrow/HEAD/parser.py --------------------------------------------------------------------------------