376 current 2025-05-03 18:04:12 25.05.20250424.f771eb4 6.12.24 *

This commit is contained in:
2025-05-03 18:04:34 -04:00
parent a36b7fdebe
commit 6fe8901228
17 changed files with 679 additions and 16 deletions

View File

@@ -32,12 +32,12 @@ fi
# Import into beets
if [ "$2" = "-na" ] || [ "$2" = "--no-auto" ]; then
if ! /usr/bin/beet import -s /home/synchronous/.music-not-tagged/tmp.mp3; then
if ! /etc/profiles/per-user/synchronous/bin/beet import -s /home/synchronous/.music-not-tagged/tmp.mp3; then
echo "Error importing into beets."
exit 1
fi
else
if ! /usr/bin/beet import -s /home/synchronous/.music-not-tagged/tmp.mp3 <<< "A"; then
if ! /etc/profiles/per-user/synchronous/bin/beet import -s /home/synchronous/.music-not-tagged/tmp.mp3 <<< "A"; then
echo "Error importing into beets."
exit 1
fi
@@ -45,7 +45,7 @@ fi
# Remove all entries from beets
if ! /usr/bin/beet ls | /usr/bin/beet remove -f; then
if ! /etc/profiles/per-user/synchronous/bin/beet ls | /etc/profiles/per-user/synchronous/bin/beet remove -f; then
echo "Error removing entries from beets."
exit 1
fi