Non reinvents the DAW. Powerful enough to form a complete studio, fast and light enough to run on low-end hardware like the eeePC or Raspberry Pi, and so reliable that it can be used live https://non.tuxfamily.org/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
507B

  1. # Include this file to use terminal colors from shell scripts and
  2. # makefiles.
  3. # john moore liles - 12/30/2002
  4. BLACK=`tput setaf 0`
  5. RED=`tput setaf 1`
  6. GREEN=`tput setaf 2`
  7. YELLOW=`tput setaf 3`
  8. BLUE=`tput setaf 4`
  9. MAGENTA=`tput setaf 5`
  10. CYAN=`tput setaf 6`
  11. WHITE=`tput setaf 7`
  12. BG_BLACK=`tput setab 0`
  13. BG_RED=`tput setab 1`
  14. BG_GREEN=`tput setab 2`
  15. BG_YELLOW=`tput setab 3`
  16. BG_BLUE=`tput setab 4`
  17. BG_MAGENTA=`tput setab 5`
  18. BG_CYAN=`tput setab 6`
  19. BG_WHITE=`tput setab 7`
  20. BOLD=`tput bold`
  21. SGR0=`tput sgr0`