├── LICENSE ├── Makefile ├── README ├── README.md ├── TODO ├── backends ├── scg │ ├── Makefile │ └── scg.c └── tty │ └── tty.sh ├── bash-completion └── blugon ├── blugon.1 ├── blugon.py ├── configs ├── deepfried │ └── gamma ├── default │ └── gamma ├── extreme │ └── gamma ├── nothing │ └── gamma ├── static │ └── gamma └── temperature │ └── gamma ├── systemd └── user │ └── blugon.service └── test ├── make-test.sh └── temp-comp.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/TODO -------------------------------------------------------------------------------- /backends/scg/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/backends/scg/Makefile -------------------------------------------------------------------------------- /backends/scg/scg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/backends/scg/scg.c -------------------------------------------------------------------------------- /backends/tty/tty.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/backends/tty/tty.sh -------------------------------------------------------------------------------- /bash-completion/blugon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/bash-completion/blugon -------------------------------------------------------------------------------- /blugon.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/blugon.1 -------------------------------------------------------------------------------- /blugon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/blugon.py -------------------------------------------------------------------------------- /configs/deepfried/gamma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/configs/deepfried/gamma -------------------------------------------------------------------------------- /configs/default/gamma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/configs/default/gamma -------------------------------------------------------------------------------- /configs/extreme/gamma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/configs/extreme/gamma -------------------------------------------------------------------------------- /configs/nothing/gamma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/configs/nothing/gamma -------------------------------------------------------------------------------- /configs/static/gamma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/configs/static/gamma -------------------------------------------------------------------------------- /configs/temperature/gamma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/configs/temperature/gamma -------------------------------------------------------------------------------- /systemd/user/blugon.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/systemd/user/blugon.service -------------------------------------------------------------------------------- /test/make-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/test/make-test.sh -------------------------------------------------------------------------------- /test/temp-comp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jumper149/blugon/HEAD/test/temp-comp.py --------------------------------------------------------------------------------