13 lines
443 B
Bash
Executable File
13 lines
443 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script uses a config file at this location to adjust the
|
|
# undervoltage of the core/cache and GPU. Source references the
|
|
# alisas from that location so the the undervolt can be easily changed.
|
|
# This can be deleted and the desired undervolt can be applyed directly from here.
|
|
|
|
source "/home/hate/.config/Scripts/config"
|
|
|
|
/home/hate/.config/Scripts/undervolt.py --core "${CORE2}" --cache "${CORE2}" --gpu "${GPU2}"
|
|
|
|
exit 0
|