├── .gitignore ├── COPYING ├── Makefile.am ├── README.md ├── autogen.sh ├── clr-power-rfkill.service ├── clr-power-tweaks.conf.5 ├── clr-power.service ├── clr-power.timer ├── configure.ac ├── include ├── clr_power.h ├── pci-good.h └── usb-good.h ├── m4 └── .keep ├── man ├── clr-power-tweaks.conf.5 ├── clr-power-tweaks.conf.5.md ├── clr_power.1 └── clr_power.1.md ├── src ├── cpu.c ├── data.h ├── ethernet.c ├── gfx.c ├── lib.c ├── main.c ├── mm.c ├── pci.c ├── server.c ├── usb.c └── verifytime.c └── template /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/Makefile.am -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/README.md -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/autogen.sh -------------------------------------------------------------------------------- /clr-power-rfkill.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/clr-power-rfkill.service -------------------------------------------------------------------------------- /clr-power-tweaks.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/clr-power-tweaks.conf.5 -------------------------------------------------------------------------------- /clr-power.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/clr-power.service -------------------------------------------------------------------------------- /clr-power.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/clr-power.timer -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/configure.ac -------------------------------------------------------------------------------- /include/clr_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/include/clr_power.h -------------------------------------------------------------------------------- /include/pci-good.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/include/pci-good.h -------------------------------------------------------------------------------- /include/usb-good.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/include/usb-good.h -------------------------------------------------------------------------------- /m4/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /man/clr-power-tweaks.conf.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/man/clr-power-tweaks.conf.5 -------------------------------------------------------------------------------- /man/clr-power-tweaks.conf.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/man/clr-power-tweaks.conf.5.md -------------------------------------------------------------------------------- /man/clr_power.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/man/clr_power.1 -------------------------------------------------------------------------------- /man/clr_power.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/man/clr_power.1.md -------------------------------------------------------------------------------- /src/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/src/cpu.c -------------------------------------------------------------------------------- /src/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/src/data.h -------------------------------------------------------------------------------- /src/ethernet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/src/ethernet.c -------------------------------------------------------------------------------- /src/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/src/gfx.c -------------------------------------------------------------------------------- /src/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/src/lib.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/src/main.c -------------------------------------------------------------------------------- /src/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/src/mm.c -------------------------------------------------------------------------------- /src/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/src/pci.c -------------------------------------------------------------------------------- /src/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/src/server.c -------------------------------------------------------------------------------- /src/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/src/usb.c -------------------------------------------------------------------------------- /src/verifytime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/src/verifytime.c -------------------------------------------------------------------------------- /template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clearlinux/clr-power-tweaks/HEAD/template --------------------------------------------------------------------------------