diff --git a/.config/i3/scripts/ppd-status b/.config/i3/scripts/ppd-status index fab21db..a47bc1e 100644 --- a/.config/i3/scripts/ppd-status +++ b/.config/i3/scripts/ppd-status @@ -4,4 +4,13 @@ #A script to show current power profile current_profile=$(/usr/bin/powerprofilesctl get) -echo "$current_profile" + if [ "$current_profile" == "performance" ] + then + echo "" + elif [ "$current_profile" == "balanced" ] + then + echo "" + else + echo "" + fi +