misc scripts & programs
1#!/bin/bash
2
3artist=$(gum input --placeholder artist | awk '{$1=$1}1' OFS="+")
4
5song=$(gum input --placeholder song | awk '{$1=$1}1' OFS="+")
6
7echo -e $(gum style --italic --foreground "#f4b8e4" "'$artist', '$song'")
8
9curl -s https://api.lyrics.ovh/v1/"$artist"/"$song" | jq -r .lyrics | less