1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-09 19:11:15 +02:00

statusbar: unified sections belonging together

This commit is contained in:
2024-03-09 03:01:57 +01:00
parent f862b777ec
commit 563b3bc5c6
3 changed files with 19 additions and 19 deletions

View File

@@ -8,21 +8,21 @@ shuffle=$(playerctl shuffle)
if [ "$loop" = "Playlist" ]
then
loop_icon="^b#282828^^c#dfdfdf^  ^d^"
loop_icon=""
elif [ "$loop" = "Track" ]
then
loop_icon="^b#282828^^c#dfdfdf^  ^d^"
loop_icon=""
elif [ "$loop" = "None" ]
then
loop_icon="^b#282828^^c#dfdfdf^  ^d^"
loop_icon=""
fi
if [ "$shuffle" = "Off" ]
then
shuffle_icon="^b#282828^^c#dfdfdf^  ^d^"
shuffle_icon=""
elif [ "$shuffle" = "On" ]
then
shuffle_icon="^b#282828^^c#dfdfdf^  ^d^"
shuffle_icon=""
fi
@@ -31,8 +31,8 @@ then
echo ""
elif [ "$playerctlstatus" = "Playing" ]
then
echo "$track ^b#282828^^c#dfdfdf^ ▶️ ^d^ $loop_icon $shuffle_icon"
echo "$track ^b#282828^^c#dfdfdf^ ▶️ $loop_icon $shuffle_icon ^d^"
elif [ "$playerctlstatus" = "Paused" ]
then
echo "^b#282828^^c#dfdfdf^  ^d^ $loop_icon $shuffle_icon"
echo "^b#282828^^c#dfdfdf^  $loop_icon $shuffle_icon ^d^"
fi