This commit is contained in:
Your Name
2025-08-16 16:24:12 -04:00
commit 1a020a7dca
52 changed files with 4346 additions and 0 deletions

11
lb-wrapper.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
# Live-build wrapper script
# This script allows you to run live-build commands from the local repository
# without needing to type the full path each time
# Set the LIVE_BUILD environment variable to point to our local repository
export LIVE_BUILD="/home/teknari/Sync/Programming/VibeCoding/n_os_tr/live-build"
# Execute the lb command from our repository with all passed arguments
exec "${LIVE_BUILD}/frontend/lb" "$@"