NeoLAB
34 subscribers
150 photos
29 videos
94 files
335 links
Lab of @neo_is_kal

🐧 | @ArchLinuxIndia
🐚 | @PrivacyToolsIOChat
🍬 | @FossMemes

This is a Journal + Shrine of links
Website: https://neovoid.is-cool.dev
Download Telegram
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
Rofi error solved

Just add this new line in xresources

rofi.font: monospace 11
#errors #fixes
#notes #foss true caller alternative http://www.callerpy.io/
lab
How to get pretty tty login art at bootup?

- /etc/issue shows pretty output in tty
- but cannot run commands directly
- so redirect the output of any ascii command to issue file
eg.- 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
464 Pages | 2021
How_Linux_Works_What_Every_Superuser_Should_Know,_3rd_Dition_by.pdf
16.3 MB
How linux works - what every superuser should know.
by Brian Ward

#books