58 lines
1.1 KiB
Markdown
58 lines
1.1 KiB
Markdown
# Crunchbang Scripts
|
|
|
|
A collection of utility scripts for macOS system management and automation.
|
|
|
|
## Scripts
|
|
|
|
### `dock.sh`
|
|
Manages macOS Dock settings.
|
|
|
|
```bash
|
|
./scripts/dock.sh [check|reset]
|
|
```
|
|
- `check` - Show current Dock tile size
|
|
- `reset` - Reset Dock to default settings
|
|
|
|
### `movefiles.sh`
|
|
Moves files from one location to another based on file type.
|
|
|
|
```bash
|
|
./scripts/movefiles.sh [source_dir] [destination_dir]
|
|
```
|
|
- `source_dir` - Source directory containing files to move
|
|
- `destination_dir` - Destination directory for organized files
|
|
|
|
## Installation
|
|
|
|
1. Clone this repository:
|
|
```bash
|
|
git clone https://github.com/yourusername/crunchbang.git
|
|
cd crunchbang
|
|
```
|
|
|
|
2. Make the scripts executable:
|
|
```bash
|
|
chmod +x scripts/*.sh
|
|
```
|
|
|
|
## Usage
|
|
|
|
All scripts are located in the `scripts` directory. Each script has built-in help that can be accessed by running it without arguments.
|
|
|
|
Example:
|
|
```bash
|
|
./scripts/dock.sh
|
|
```
|
|
|
|
## Requirements
|
|
|
|
- macOS
|
|
- Bash or compatible shell
|
|
|
|
## License
|
|
|
|
MIT License - feel free to use and modify these scripts as needed.
|
|
|
|
## Contributing
|
|
|
|
Feel free to submit issues and enhancement requests!
|