Compare commits

..

2 Commits

Author SHA1 Message Date
326768a89e Enable parallel building
All checks were successful
Build / build (push) Successful in 2m5s
2025-10-16 21:13:26 +02:00
3781e30249 Add & build archive 2025-10-16 21:13:26 +02:00

10
manage
View File

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