Daily Shaarli

All links of one day in a single page.

November 20, 2020

Script: Télécharger en mp3 le titre en cours avec playerctl et youtube-dl

!/bin/sh

val=$(playerctl metadata --format "{{ artist }} - {{ title }}")
zenity --notification --window-icon=info.png --text "$val"
youtube-dl ytsearch:"$val" --extract-audio --audio-format mp3 -o "%(artist)s-%(title)s.%(ext)s"
zenity --notification --window-icon=info.png --text "Téléchargement terminé"