#!/bin/bash

# Just a shortcut for running neofetch in different colours
# Cheers!
# Addy

if  [[ $1 = "-blue" ]]; then
neofetch --source ~/.config/neofetch/arch-blue.png --colors 4 4 4 4 4
elif [[ $1 = "-crimson" ]]; then
neofetch --source ~/.config/neofetch/arch-crimson.png --colors 1 1 1 1 1
elif [[ $1 = "-cyan" ]]; then
neofetch --source ~/.config/neofetch/arch-cyan.png --colors 6 6 6 6 6
elif [[ $1 = "-froly" ]]; then
neofetch --source ~/.config/neofetch/arch-froly.png --colors 9 9 9 9 9
elif [[ $1 = "-lavender" ]]; then
neofetch --source ~/.config/neofetch/arch-lavender.png --colors 13 13 13 13 13
elif [[ $1 = "-lime" ]]; then
neofetch --source ~/.config/neofetch/arch-lime.png --colors 2 2 2 2 2
elif [[ $1 = "-orange" ]]; then
neofetch --source ~/.config/neofetch/arch-orange.png --colors 3 3 3 3 3
elif [[ $1 = "-paper" ]]; then
neofetch --source ~/.config/neofetch/arch-paper.png --colors 7 7 7 7 7
elif [[ $1 = "-violet" ]]; then
neofetch --source ~/.config/neofetch/arch-violet.png --colors 5 5 5 5 5
else
echo "Available options:
-blue		-lavender	-paper
-crimson	-lime		-violet
-froly		-orange		-cyan"
fi
