How to easily download videos from Youtube as mp3!
This is just a little script I made. It's nothing special.
​
Depends on youtube-dl and id3v2
#!/bin/bash
cd ~/Music
read -p 'Link: ' link
read -p 'Title of the song: ' title
read -p 'Artist of the song: ' artist
read -p 'Album: ' album
youtube-dl -x --audio-format mp3 --audio-quality 0 -o ~/Music/"$title.%(ext)s" $link
id3v2 -t "$title" -a "$artist" -A "$album" "$title".mp3
tell me what you think about it
https://redd.it/ltnr3a
@r_linux
This is just a little script I made. It's nothing special.
​
Depends on youtube-dl and id3v2
#!/bin/bash
cd ~/Music
read -p 'Link: ' link
read -p 'Title of the song: ' title
read -p 'Artist of the song: ' artist
read -p 'Album: ' album
youtube-dl -x --audio-format mp3 --audio-quality 0 -o ~/Music/"$title.%(ext)s" $link
id3v2 -t "$title" -a "$artist" -A "$album" "$title".mp3
tell me what you think about it
https://redd.it/ltnr3a
@r_linux
reddit
How to easily download videos from Youtube as mp3!
This is just a little script I made. It's nothing special. Depends on youtube-dl and id3v2 #!/bin/bash cd ~/Music read -p...
Forwarded from Deleted Account
Awesome rust stuff:
- TUI File Manager - https://github.com/sayanarijit/xplr
- Neofetch for github projects - https://github.com/o2sh/onefetch
- Shell but in rust - https://github.com/redox-os/ion
- TUI File Manager - https://github.com/sayanarijit/xplr
- Neofetch for github projects - https://github.com/o2sh/onefetch
- Shell but in rust - https://github.com/redox-os/ion
GitHub
GitHub - sayanarijit/xplr: A hackable, minimal, fast TUI file explorer
A hackable, minimal, fast TUI file explorer. Contribute to sayanarijit/xplr development by creating an account on GitHub.
Forwarded from Deleted Account
search rust here https://github.com/fosslife/awesome-ricing
GitHub
GitHub - fosslife/awesome-ricing: A curated list of awesome tools and technology to help you out with ricing on linux
A curated list of awesome tools and technology to help you out with ricing on linux - fosslife/awesome-ricing
How to get pretty tty login art at bootup?
-
- but cannot run commands directly
- so redirect the output of any ascii command to
eg.-
-
/etc/issue shows pretty output in tty- but cannot run commands directly
- so redirect the output of any ascii command to
issue fileeg.-
neofetch > /etc/issue
but to run that command in each startup put it into /etc/rc.local
i use this fm6000 -r -c random -s zsh -de=dwm -n > /etc/issue
and put it into /etc/rc.local
Enjoy! #notes