54 lines
1.1 KiB
Bash
Executable File
54 lines
1.1 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
# dmenu script for quickly setting ryzenadj profiles with my other script easily
|
|
load_config () {
|
|
. $HOME/.config/dmenu/config
|
|
}
|
|
|
|
get_category () {
|
|
category=$( sudo ryzenset list | $DMENU -p "Choose profile category:")
|
|
|
|
[ -z "$category" ] && exit 0
|
|
}
|
|
|
|
get_current_profile () {
|
|
current_temp=$(sudo get-tctl-limit)
|
|
|
|
[ "$current_temp" = "60" ] && current_mode="normal mode"
|
|
[ "$current_temp" = "65" ] && current_mode="light gaming"
|
|
[ "$current_temp" = "70" ] && current_mode="heavy gaming"
|
|
[ "$current_temp" = "75" ] && current_mode="heavy programs"
|
|
[ "$current_temp" = "85" ] && current_mode="heavy gaming pro"
|
|
}
|
|
|
|
menu () {
|
|
while [ -z "$profile" ]
|
|
do
|
|
profile=$(sudo ryzenset list $category | $DMENU -p "Current: $current_mode:")
|
|
|
|
[ -z "$profile" ] && get_category
|
|
done
|
|
}
|
|
|
|
launch_profile () {
|
|
if sudo ryzenset set "$profile"; then
|
|
quick-notify "Ryzenset" "Setting $profile"
|
|
else
|
|
quick-notify "Ryzenset" "Failed to set $game"
|
|
fi
|
|
}
|
|
|
|
main () {
|
|
load_config
|
|
|
|
get_category
|
|
|
|
get_current_profile
|
|
|
|
menu
|
|
|
|
launch_profile
|
|
}
|
|
|
|
main $@
|