Add & build archive

This commit is contained in:
2025-10-16 20:56:22 +02:00
parent b900babea2
commit 6135d1808c
267 changed files with 950 additions and 24 deletions

10
manage
View File

@@ -1,6 +1,6 @@
#!/bin/bash
SONGS_PATH="content/"
SONGS_PATH="content/current/"
usage() {
cat <<EOF
@@ -49,7 +49,7 @@ case "$1" in
;;
edit)
if [ "$#" -eq 2 ]; then
xdg-open "content/$2/$2.cho"
xdg-open "$SONGS_PATH/$2/$2.cho"
else
echo -e "Missing song name\n"
usage
@@ -57,9 +57,9 @@ case "$1" in
;;
iedit)
if [ "$#" -eq 2 ]; then
touch "content/$2/$2.pdf"
xdg-open "content/$2/$2.pdf" &
xdg-open "content/$2/$2.cho"
touch "$SONGS_PATH/$2/$2.pdf"
xdg-open "$SONGS_PATH/$2/$2.pdf" &
xdg-open "$SONGS_PATH/$2/$2.cho"
else
echo -e "Missing song name\n"
usage