Created
March 18, 2026 07:11
-
-
Save tima/ef1791aa5f5171edca839189c615fc5e to your computer and use it in GitHub Desktop.
kickstart.sh
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 | |
| echo "Downloading dotfiles..." | |
| # Clone the repository directly to the home folder | |
| git clone https://github.com/tima/dotfiles.git ~/dotfiles | |
| echo "Running the master setup..." | |
| # Navigate to the folder, make the script executable, and run it | |
| cd ~/dotfiles | |
| chmod +x bootstrap.sh | |
| ./bootstrap.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment