├── .github └── pull.yml ├── LICENSE ├── README.md ├── etc ├── systemd │ └── system │ │ ├── ac.target │ │ ├── battery.target │ │ ├── set-ryzenadj-tweaks.path │ │ └── set-ryzenadj-tweaks.service └── udev │ └── rules.d │ └── 99-powertargets.rules ├── home └── deck │ └── .local │ └── bin │ ├── allowadj.txt │ ├── experimental.sh │ ├── experimentaladj.txt │ ├── off.sh │ ├── on.sh │ ├── ryzenadj │ ├── set-ryzenadj-tweaks.sh │ └── statusadj.txt ├── install.sh └── uninstall.sh /.github/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/.github/pull.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/README.md -------------------------------------------------------------------------------- /etc/systemd/system/ac.target: -------------------------------------------------------------------------------- 1 | [Unit] 2 | Description=On AC power 3 | DefaultDependencies=no 4 | StopWhenUnneeded=yes 5 | -------------------------------------------------------------------------------- /etc/systemd/system/battery.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/etc/systemd/system/battery.target -------------------------------------------------------------------------------- /etc/systemd/system/set-ryzenadj-tweaks.path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/etc/systemd/system/set-ryzenadj-tweaks.path -------------------------------------------------------------------------------- /etc/systemd/system/set-ryzenadj-tweaks.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/etc/systemd/system/set-ryzenadj-tweaks.service -------------------------------------------------------------------------------- /etc/udev/rules.d/99-powertargets.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/etc/udev/rules.d/99-powertargets.rules -------------------------------------------------------------------------------- /home/deck/.local/bin/allowadj.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /home/deck/.local/bin/experimental.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/home/deck/.local/bin/experimental.sh -------------------------------------------------------------------------------- /home/deck/.local/bin/experimentaladj.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /home/deck/.local/bin/off.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/home/deck/.local/bin/off.sh -------------------------------------------------------------------------------- /home/deck/.local/bin/on.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/home/deck/.local/bin/on.sh -------------------------------------------------------------------------------- /home/deck/.local/bin/ryzenadj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/home/deck/.local/bin/ryzenadj -------------------------------------------------------------------------------- /home/deck/.local/bin/set-ryzenadj-tweaks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/home/deck/.local/bin/set-ryzenadj-tweaks.sh -------------------------------------------------------------------------------- /home/deck/.local/bin/statusadj.txt: -------------------------------------------------------------------------------- 1 | unknown 2 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/install.sh -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KyleGospo/Steam-Deck-Software-Undervolt/HEAD/uninstall.sh --------------------------------------------------------------------------------