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 demo
muf fuzic
muf.debug.log

View File

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

View File

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