├── .gitattributes ├── LICENSE ├── README.md ├── SETTINGS ├── daemon.py ├── design.py ├── do_graph.py ├── jobs.py ├── requirements.txt ├── resources ├── icon.png ├── settings.ini ├── telebix.png ├── telebix_mini.png └── telebix_splash.png ├── setup.sh ├── telebix ├── telebix.desktop └── telebix.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/README.md -------------------------------------------------------------------------------- /SETTINGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/SETTINGS -------------------------------------------------------------------------------- /daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/daemon.py -------------------------------------------------------------------------------- /design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/design.py -------------------------------------------------------------------------------- /do_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/do_graph.py -------------------------------------------------------------------------------- /jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/jobs.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/resources/settings.ini -------------------------------------------------------------------------------- /resources/telebix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/resources/telebix.png -------------------------------------------------------------------------------- /resources/telebix_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/resources/telebix_mini.png -------------------------------------------------------------------------------- /resources/telebix_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/resources/telebix_splash.png -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/setup.sh -------------------------------------------------------------------------------- /telebix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/telebix -------------------------------------------------------------------------------- /telebix.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/telebix.desktop -------------------------------------------------------------------------------- /telebix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Warflop/Telebix/HEAD/telebix.py --------------------------------------------------------------------------------