update scripts to not cd to TODO MUSIC

This commit is contained in:
2025-12-07 15:52:42 +00:00
parent 8edfb40df3
commit 67132dfabe
36 changed files with 8732 additions and 4 deletions

8
.env/bin/mid3v2 Executable file
View File

@@ -0,0 +1,8 @@
#!/home/sem/music-tools/.env/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from mutagen._tools.mid3v2 import entry_point
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(entry_point())