This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ############################################################################### | |
| # Windsurf IDE Installation Script | |
| # Description: Installs Windsurf AI-powered code editor on Debian/Ubuntu | |
| ############################################################################### | |
| set -e # Exit on error | |
| echo "=========================================" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ############################################################################### | |
| # SSH Key Setup Script for GitHub | |
| # Description: Generates SSH key and provides instructions for GitHub setup | |
| ############################################################################### | |
| set -e # Exit on error | |
| echo "=========================================" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ############################################################################### | |
| # Git Installation and Configuration Script | |
| # Description: Installs Git and configures user identity | |
| ############################################################################### | |
| set -e # Exit on error | |
| echo "=========================================" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| ############################################################################### | |
| # Master Setup Script | |
| # Description: Runs all setup scripts to configure a new Linux dev machine | |
| ############################################################################### | |
| set -e # Exit on error | |
| SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" |