├── .deps ├── main.Po ├── powerUPP-main.Po └── powerUPP-main.Tpo ├── .gitignore ├── LICENSE ├── README.md ├── glade ├── gio.xml └── window_main.glade ├── makefile ├── powerupp.desktop ├── res └── icon.png └── src ├── active.c ├── active.h ├── apply.c ├── apply.h ├── defaults.c ├── defaults.h ├── main.c ├── save.c ├── save.h └── variables.h /.deps/main.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /.deps/powerUPP-main.Po: -------------------------------------------------------------------------------- 1 | # dummy 2 | -------------------------------------------------------------------------------- /.deps/powerUPP-main.Tpo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/.deps/powerUPP-main.Tpo -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/README.md -------------------------------------------------------------------------------- /glade/gio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/glade/gio.xml -------------------------------------------------------------------------------- /glade/window_main.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/glade/window_main.glade -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/makefile -------------------------------------------------------------------------------- /powerupp.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/powerupp.desktop -------------------------------------------------------------------------------- /res/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/res/icon.png -------------------------------------------------------------------------------- /src/active.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/src/active.c -------------------------------------------------------------------------------- /src/active.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/src/active.h -------------------------------------------------------------------------------- /src/apply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/src/apply.c -------------------------------------------------------------------------------- /src/apply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/src/apply.h -------------------------------------------------------------------------------- /src/defaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/src/defaults.c -------------------------------------------------------------------------------- /src/defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/src/defaults.h -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/src/main.c -------------------------------------------------------------------------------- /src/save.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/src/save.c -------------------------------------------------------------------------------- /src/save.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/src/save.h -------------------------------------------------------------------------------- /src/variables.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azeam/powerupp/HEAD/src/variables.h --------------------------------------------------------------------------------