diff --git a/dotfiles/alacritty/alacritty.yml b/dotfiles/alacritty/alacritty.yml index 1b824ab..2697773 100644 --- a/dotfiles/alacritty/alacritty.yml +++ b/dotfiles/alacritty/alacritty.yml @@ -97,21 +97,21 @@ font: # - (macOS) Menlo # - (Linux/BSD) monospace # - (Windows) Consolas - family: InconsolataLGC Nerd Font Mono + family: InconsolataLGC Nerd Font Mono # The `style` can be specified to pick a specific face. - #style: Regular + style: Regular # Bold font face - #bold: + bold: # Font family # # If the bold family is not specified, it will fall back to the # value specified for the normal font. - #family: monospace + family: InconsolataLGC Nerd Font Mono # The `style` can be specified to pick a specific face. - #style: Bold + style: Bold # Italic font face italic: diff --git a/dotfiles/polybar/scripts/spotify.sh b/dotfiles/polybar/scripts/spotify.sh index 79a0cee..15d3561 100755 --- a/dotfiles/polybar/scripts/spotify.sh +++ b/dotfiles/polybar/scripts/spotify.sh @@ -16,7 +16,7 @@ main() { album=$(echo "$meta" | sed -nr '/xesam:album"/,+2s/^ +variant +string "(.*)"$/\1/p' | tail -1| sed 's/\&/\\&/g'| sed 's#\/#\\/#g') title=$(echo "$meta" | sed -nr '/xesam:title"/,+2s/^ +variant +string "(.*)"$/\1/p' | tail -1 | sed 's/\&/\\&/g'| sed 's#\/#\\/#g') - echo "${*:-%artist% - %title%}" | sed "s/%artist%/$artist/g;s/%title%/$title/g;s/%album%/$album/g"i | sed "s/\&/\&/g" | sed "s#\/#\/#g" + echo " ${*:-%artist% - %title%}" | sed "s/%artist%/$artist/g;s/%title%/$title/g;s/%album%/$album/g"i | sed "s/\&/\&/g" | sed "s#\/#\/#g" }