20 lines
594 B
Bash
Executable File
20 lines
594 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Easily set aws profiles using credentialys
|
|
source ~/.config/scripts/tool/aws-profile.sh
|
|
# Prep images for upload to pfy.ch cdn
|
|
source ~/.config/scripts/tool/site-prep.sh
|
|
# Quickly get domain details from dig
|
|
source ~/.config/scripts/tool/ezdig.sh
|
|
# Git utils and extensions
|
|
source ~/.config/scripts/tool/git.sh
|
|
# Aliases for common kill actions
|
|
source ~/.config/scripts/tool/kill.sh
|
|
# Generate thumbnails for videos
|
|
source ~/.config/scripts/tool/thumb.sh
|
|
|
|
# Text colour utility variables
|
|
source ~/.config/scripts/util/colours.sh
|
|
# Secrets
|
|
source ~/.config/scripts/util/secret.sh
|