add scripts
This commit is contained in:
3
cover_to_flac
Executable file
3
cover_to_flac
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
metaflac --import-picture-from front.jpg *.flac
|
5
m4a_to_flac
Executable file
5
m4a_to_flac
Executable file
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
for file in *.m4a ; do
|
||||||
|
ffmpeg -i "$file" -f flac "$( basename "$file" .m4a ).flac"
|
||||||
|
done
|
6
picom_toggle
Executable file
6
picom_toggle
Executable file
@ -0,0 +1,6 @@
|
|||||||
|
if pgrep -x "picom" > /dev/null
|
||||||
|
then
|
||||||
|
pkill picom
|
||||||
|
else
|
||||||
|
picom -b
|
||||||
|
fi
|
Reference in New Issue
Block a user