Files
terminal-portfolio/run-mac.sh

13 lines
252 B
Bash

#!/bin/bash
# Download the macOS executable
curl -L https://github.com/KeshavAnandCode/Terminal/releases/download/v1.0/portfolio-mac -o /tmp/portfolio
# Make it executable
chmod +x /tmp/portfolio
# Run it
/tmp/portfolio
# Clean up
rm /tmp/portfolio