├── .gitignore ├── LICENSE ├── README.md ├── backup-hdd ├── README.md └── backup.sh ├── folder-size └── README.md ├── random └── readme.md ├── screen-timelapse ├── README.md └── timelapse.sh └── smash-overlay ├── README.md ├── composed └── .gitignore ├── original └── original.jpg ├── overlay.png └── smash.command /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thmsbfft/bash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thmsbfft/bash/HEAD/README.md -------------------------------------------------------------------------------- /backup-hdd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thmsbfft/bash/HEAD/backup-hdd/README.md -------------------------------------------------------------------------------- /backup-hdd/backup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thmsbfft/bash/HEAD/backup-hdd/backup.sh -------------------------------------------------------------------------------- /folder-size/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thmsbfft/bash/HEAD/folder-size/README.md -------------------------------------------------------------------------------- /random/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thmsbfft/bash/HEAD/random/readme.md -------------------------------------------------------------------------------- /screen-timelapse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thmsbfft/bash/HEAD/screen-timelapse/README.md -------------------------------------------------------------------------------- /screen-timelapse/timelapse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thmsbfft/bash/HEAD/screen-timelapse/timelapse.sh -------------------------------------------------------------------------------- /smash-overlay/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thmsbfft/bash/HEAD/smash-overlay/README.md -------------------------------------------------------------------------------- /smash-overlay/composed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thmsbfft/bash/HEAD/smash-overlay/composed/.gitignore -------------------------------------------------------------------------------- /smash-overlay/original/original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thmsbfft/bash/HEAD/smash-overlay/original/original.jpg -------------------------------------------------------------------------------- /smash-overlay/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thmsbfft/bash/HEAD/smash-overlay/overlay.png -------------------------------------------------------------------------------- /smash-overlay/smash.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thmsbfft/bash/HEAD/smash-overlay/smash.command --------------------------------------------------------------------------------