├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── layout.glade ├── layout.glade~ ├── screenshot.png ├── thinker.py └── thinker.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP1147/thinker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | layout.glade~ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP1147/thinker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP1147/thinker/HEAD/README.md -------------------------------------------------------------------------------- /layout.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP1147/thinker/HEAD/layout.glade -------------------------------------------------------------------------------- /layout.glade~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP1147/thinker/HEAD/layout.glade~ -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP1147/thinker/HEAD/screenshot.png -------------------------------------------------------------------------------- /thinker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP1147/thinker/HEAD/thinker.py -------------------------------------------------------------------------------- /thinker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/VP1147/thinker/HEAD/thinker.sh --------------------------------------------------------------------------------