Add power profile and fan strategy waybar modules - scripts/power-profile.sh: waybar module + wofi menu for powerprofilesctl - scripts/fan-profile.sh: waybar module + wofi menu for fw-fanctrl - waybar/config.jsonc: add custom/power-profile and custom/fan-profile modules - waybar/style.css: add padding and class colors for new modules - packages.txt: add power-profiles-daemon and fw-fanctrl - install.sh: symlink new scripts to ~/.local/bin

This commit is contained in:
funman300
2026-04-22 17:27:29 -07:00
parent 0cd43b9e54
commit 54689f9781
6 changed files with 90 additions and 2 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/bin/bash
if [ "$1" = "--menu" ]; then
CHOICE=$(printf "󰓅 performance\n󰕲 balanced\n󰌪 power-saver" \
| wofi --dmenu \
--prompt "Power Profile:" \
--width 260 \
--height 160 \
--hide-scroll \
--no-actions \
--insensitive \
| awk '{print $NF}')
[ -n "$CHOICE" ] && powerprofilesctl set "$CHOICE" && pkill -RTMIN+8 waybar
exit
fi
CURRENT=$(powerprofilesctl get)
case "$CURRENT" in
performance) ICON="󰓅" ;;
balanced) ICON="󰕲" ;;
power-saver) ICON="󰌪" ;;
*) ICON="" ;;
esac
printf '{"text": "%s %s", "tooltip": "Power profile: %s\\nClick to change", "class": "%s"}\n' \
"$ICON" "$CURRENT" "$CURRENT" "$CURRENT"