#!/bin/bash # Configuration SERVICE_NAME="walldash" USER_NAME=$(whoami) DIR_PATH=$(pwd) BUN_PATH=$(which bun) if [ -z "$BUN_PATH" ]; then echo "Error: Bun not found. Please install Bun first." exit 1 fi # Create systemd service file cat <