Compare commits

...

2 Commits

Author SHA1 Message Date
70bac5be34 add gaming mouse 2024-12-02 14:09:18 -05:00
59f0106d5e tweak song script 2024-12-02 14:09:18 -05:00
3 changed files with 12 additions and 5 deletions

View File

@ -242,6 +242,13 @@ client.unfocused #222222 #222222 #AAAAAA
# font
font pango: IBMPlexMono Regular 10
input "5215:621:SINO_WEALTH_GXT_144_Gaming_Mouse" {
accel_profile "flat"
dwt disabled
left_handed disabled
pointer_accel -0.78
}
# wacom
input "1386:770:Wacom_Intuos_PT_S_Pen" {
accel_profile "flat"

View File

@ -3,5 +3,5 @@ set -eou pipefail
echo "$1" | wget-titles-from-urls >> titles.txt
echo "$1" | youtube-audio
standardize-music
ls -Art | tail -n 1 | xargs -d '\n' kid3
standardize-music

View File

@ -9,7 +9,7 @@ fi
count=`ls -1 *.ogg 2>/dev/null | wc -l`
if [ $count != 0 ]; then
for i in *.ogg; do
ffmpeg -y -i "$i" "${i%.*}.mp3" && rm "$i"
ffmpeg -y -i "$i" -map_metadata 0:s:a:0 "${i%.*}.mp3" && rm "$i"
done
fi
@ -21,7 +21,7 @@ fi
count=`ls -1 *.webm 2>/dev/null | wc -l`
if [ $count != 0 ]; then
for i in *.webm; do
ffmpeg -y -i "$i" "${i%.*}.mp3" && rm "$i"
ffmpeg -y -i "$i" -map_metadata 0:s:a:0 "${i%.*}.mp3" && rm "$i"
done
fi
@ -33,7 +33,7 @@ fi
count=`ls -1 *.opus 2>/dev/null | wc -l`
if [ $count != 0 ]; then
for i in *.opus; do
ffmpeg -y -i "$i" "${i%.*}.mp3" && rm "$i"
ffmpeg -y -i "$i" -map_metadata 0:s:a:0 "${i%.*}.mp3" && rm "$i"
done
fi
@ -45,7 +45,7 @@ fi
count=`ls -1 *.m4a 2>/dev/null | wc -l`
if [ $count != 0 ]; then
for i in *.m4a; do
ffmpeg -y -i "$i" "${i%.*}.mp3" && rm "$i"
ffmpeg -y -i "$i" -map_metadata 0:s:a:0 "${i%.*}.mp3" && rm "$i"
done
fi