nix/home/program/bash/module/Radj.nix

16 lines
280 B
Nix
Raw Normal View History

2024-12-11 13:20:16 +03:00
{ ... }: {
text = ''
# Adjust ryzen temp limit.
# Usage: radj [TEMP]
function radj() {
local limit="''${1}"
if [[ "''${limit}" = "" ]]; then
systemctl start radj.service
else
systemctl stop radj.service
ryzenadj --tctl-temp=''${limit}
fi
}
'';
}