blob: a7fb34e7d25e21a7269b02f4679af674eb516b4d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Some colored makepkg-like functions
note() {
printf "${BLUE}==>${ALL_OFF}${YELLOW} NOTE:${ALL_OFF}${BOLD} ${1}${ALL_OFF}\n"
}
ALL_OFF="$(tput sgr0)"
BOLD="$(tput bold)"
BLUE="${BOLD}$(tput setaf 4)"
YELLOW="${BOLD}$(tput setaf 3)"
post_install() {
note "Do not forget to register at https://marketplace.tracktion.com/shop/free-daw to create your login and use the DAW for free."
}
|