Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions wpx
Original file line number Diff line number Diff line change
Expand Up @@ -247,14 +247,14 @@ function getscriptversions {
# ---------------- #
# Colour Functions #
# ---------------- #
black() { printf "$(tput setaf 0)$*$(tput setaf 9)"; }
red() { printf "$(tput setaf 1)$*$(tput setaf 9)"; }
green() { printf "$(tput setaf 2)$*$(tput setaf 9)"; }
yellow() { printf "$(tput setaf 3)$*$(tput setaf 9)"; }
blue() { printf "$(tput setaf 4)$*$(tput setaf 9)"; }
magenta() { printf "$(tput setaf 5)$*$(tput setaf 9)"; }
cyan() { printf "$(tput setaf 6)$*$(tput setaf 9)"; }
white() { printf "$(tput setaf 7)$*$(tput setaf 9)"; }
black() { printf "$(tput setaf 0)$*$(tput sgr0)"; }
red() { printf "$(tput setaf 1)$*$(tput sgr0)"; }
green() { printf "$(tput setaf 2)$*$(tput sgr0)"; }
yellow() { printf "$(tput setaf 3)$*$(tput sgr0)"; }
blue() { printf "$(tput setaf 4)$*$(tput sgr0)"; }
magenta() { printf "$(tput setaf 5)$*$(tput sgr0)"; }
cyan() { printf "$(tput setaf 6)$*$(tput sgr0)"; }
white() { printf "$(tput setaf 7)$*$(tput sgr0)"; }

# ------------------- #
# Check Action Result #
Expand Down