renamed fuzic

This commit is contained in:
2025-09-08 12:44:41 +02:00
parent 4d63df4535
commit 88ec2f8bf5
3 changed files with 8 additions and 11 deletions

3
.gitignore vendored
View File

@@ -1,3 +1,2 @@
demo
muf
muf.debug.log
fuzic

View File

@@ -3,16 +3,14 @@
BOLD="\033[1m"
GREEN="\033[0;32m"
OFF="\033[m"
NAME="muf"
NAME="fuzic"
SRC="./src/main.sh"
tmpdir=$(mktemp -d)
echo "🐔 ${GREEN}Internalize sourced files${OFF}"
echo "🥚 ${GREEN}Internalize sourced files${OFF}"
sed -E 's|\. "([^$].+)"$|cat src/\1|e' "$SRC" >"$tmpdir/1.sh"
echo "🥚 ${GREEN}Internalize awk scripts${OFF}"
sed -E 's|@@include (.+)$|cat src/\1|e' "$tmpdir/1.sh" >"$tmpdir/2.sh"
echo "🐔 ${GREEN}Internalize awk libraries${OFF}"
sed -E 's|@include "(.+)"$|cat src/\1|e' "$tmpdir/2.sh" >"$NAME"
echo "🐔 ${GREEN}Internalize awk scripts${OFF}"
sed -E 's|@@include (.+)$|cat src/\1|e' "$tmpdir/1.sh" >"$NAME"
echo "🥚 ${GREEN}Make executable and cleanup${OFF}"
chmod +x "$NAME"
rm -rf "$tmpdir"

View File

@@ -1,5 +1,5 @@
# Application information
APP_NAME="muf"
APP_VERSION="zero.zero"
APP_WEBSITE="https://git.indyfac.ch/amin/muf"
APP_NAME="fuzic"
APP_VERSION="0.1"
APP_WEBSITE="https://git.indyfac.ch/amin/fuzic"
WINDOW_TITLE="🔎🎶 $APP_NAME | a simple music finder and player"