.dotfiles/configs/waybar/scripts/power-profile
2022-07-26 19:55:09 +02:00

26 lines
477 B
Bash
Executable File

#!/bin/bash
CURRENT=$(powerprofilesctl get)
LOW="🐢"
BALANCED="☯️"
HIGH="🐇"
if [ "$CURRENT" = 'power-saver' ]; then
if [ "$1" = "--toggle" ]; then
powerprofilesctl set balanced
fi
echo $LOW
elif [ "$CURRENT" = 'balanced' ]; then
if [ "$1" = "--toggle" ]; then
powerprofilesctl set performance
fi
echo $BALANCED
elif [ "$CURRENT" = 'performance' ]; then
if [ "$1" = "--toggle" ]; then
powerprofilesctl set power-saver
fi
echo $HIGH
fi