Files
browser-recall/run-browser-recall.fish
2025-01-26 01:08:03 -06:00

11 lines
284 B
Fish
Executable File

#!/usr/bin/env fish
# Change to the script's directory
cd (dirname (status filename))
# Activate the virtual environment and run main.py silently
vf activate general
python main.py > /dev/null 2>&1 &
# Print a simple confirmation message
echo "Browser Recall started in background"