diff --git a/README.md b/README.md index 1f954a2..bd5ecb6 100644 --- a/README.md +++ b/README.md @@ -16,29 +16,28 @@ cd crunchbang 2. Make the scripts executable: ```bash -chmod +x scripts/*.sh +chmod +x *.sh ``` -3. (Optional) Add the scripts directory to your PATH: +3. (Optional) Add the repository to your PATH: ```bash -echo 'export PATH="$PATH:$(pwd)/scripts"' >> ~/.bashrc +echo 'export PATH="$PATH:$(pwd)"' >> ~/.bashrc # or for zsh -echo 'export PATH="$PATH:$(pwd)/scripts"' >> ~/.zshrc +echo 'export PATH="$PATH:$(pwd)"' >> ~/.zshrc ``` ## 🛠️ Available Scripts Each script in this collection serves a specific purpose. Here's a brief overview of what's available: -- `scripts/`: Directory containing all the bash scripts - - (Scripts will be listed here as they are added) +- (Scripts will be listed here as they are added) ## 📖 Usage Each script includes its own documentation and usage instructions. You can view the help for any script by running: ```bash -./scripts/script-name.sh --help +./script-name.sh --help ``` ## 🤝 Contributing @@ -47,7 +46,7 @@ Contributions are welcome! If you have a useful bash script that you'd like to s 1. Fork the repository 2. Create a new branch for your feature -3. Add your script to the `scripts/` directory +3. Add your script to the root directory 4. Update the README with information about your script 5. Submit a pull request