add symbol to music indicator
[scripts.git] / i3blocks-music.pl
index 2cebc3821f1bd8833030b67059e91afd75fd206c..b24f6b1625792421d7c7d551f1d199ed6b79645a 100755 (executable)
@@ -19,7 +19,7 @@ if (not m/Playing/) {
   print("<span color='#586e75'>");
 }
 else {
- print("<span>");
+ print("<span>♪ ");
 }
 
 # Obtain & format metadata from playerctl
@@ -28,12 +28,12 @@ push(@metadata, $artist) if $artist;
 
 my $title = qx(playerctl $player_arg metadata title);
 $title =~ s/(\s|\s\()[Ff]([et]at[. ].*|t.*)//;
-$title =~ s/((\s(\(|\[).+(\)|\]).+)|(\s-\s.+))+//;
-$title =~ s/&/&amp;/;   # fix ampersand rendering for i3bar
+$title =~ s/((\s(\(|\[).+(\)|\]).*)|(\s-\s.+))//;
 push(@metadata, $title) if $title;
 
 for (@metadata){
   s/\n//;   # remove newlines
+  s/&/&amp;/;   # fix ampersand rendering for i3bar
 }
 
 # Print stuff