add ytdl config and lsfiles-backup

This commit is contained in:
eneller
2023-04-12 17:49:13 +02:00
parent 65bad62ee9
commit 88f92ff3d2
2 changed files with 13 additions and 0 deletions

8
audio.ytdl Normal file
View File

@@ -0,0 +1,8 @@
# Point to this config using --config-location
# Extract Audio
-x
--audio-format=mp3
# Highest Audio Quality (10 is lowest)
--audio-quality=0
# set output names
-o ~/Downloads/ytdl/%(playlist_title|misc)s/%(title)s.%(ext)s

5
lsfiles-backup.sh Executable file
View File

@@ -0,0 +1,5 @@
#!/bin/bash
dotfiles ls-files | while read -r line; do
mv $HOME/$line $HOME/$line.bak
done