├── .gitignore ├── README.md ├── config.sh ├── install.sh ├── menu.png ├── plugin ├── script │ └── smartcpu.py └── smartcpu.1s.sh ├── src ├── VoltageShift.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoltageShift │ │ └── _CodeSignature │ │ └── CodeResources ├── auto.sh ├── com.saintno.autovoltage.plist ├── com.saintno.notifier.plist ├── cprofile.sh ├── notifier.sh └── voltageshift ├── try.sh └── uninstall.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/README.md -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/config.sh -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/install.sh -------------------------------------------------------------------------------- /menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/menu.png -------------------------------------------------------------------------------- /plugin/script/smartcpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/plugin/script/smartcpu.py -------------------------------------------------------------------------------- /plugin/smartcpu.1s.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/plugin/smartcpu.1s.sh -------------------------------------------------------------------------------- /src/VoltageShift.kext/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/src/VoltageShift.kext/Contents/Info.plist -------------------------------------------------------------------------------- /src/VoltageShift.kext/Contents/MacOS/VoltageShift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/src/VoltageShift.kext/Contents/MacOS/VoltageShift -------------------------------------------------------------------------------- /src/VoltageShift.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/src/VoltageShift.kext/Contents/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /src/auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/src/auto.sh -------------------------------------------------------------------------------- /src/com.saintno.autovoltage.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/src/com.saintno.autovoltage.plist -------------------------------------------------------------------------------- /src/com.saintno.notifier.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/src/com.saintno.notifier.plist -------------------------------------------------------------------------------- /src/cprofile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/src/cprofile.sh -------------------------------------------------------------------------------- /src/notifier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/src/notifier.sh -------------------------------------------------------------------------------- /src/voltageshift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/src/voltageshift -------------------------------------------------------------------------------- /try.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/try.sh -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tctien342/smart-cpu/HEAD/uninstall.sh --------------------------------------------------------------------------------