command_dev_ui.sh 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. #!/bin/bash
  2. # LinuxGSM command_dev_ui.sh module
  3. # Author: Daniel Gibbs
  4. # Contributors: https://linuxgsm.com/contrib
  5. # Website: https://linuxgsm.com
  6. # Description: Dev only: Assist with UI development.
  7. commandname="DEV-DEBUG"
  8. commandaction="Developer ui"
  9. moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
  10. fn_firstcommand_set
  11. fn_print_header
  12. # Load ANSI colors
  13. fn_ansi_loader
  14. echo -e ""
  15. echo -e "${lightgreen}Colours${default}"
  16. fn_messages_separator
  17. # Print supported colors
  18. echo -e "${default}default"
  19. echo -e "${black}black${default}"
  20. echo -e "${red}red${default}"
  21. echo -e "${lightred}lightred${default}"
  22. echo -e "${green}green${default}"
  23. echo -e "${lightgreen}lightgreen${default}"
  24. echo -e "${yellow}yellow${default}"
  25. echo -e "${lightyellow}lightyellow${default}"
  26. echo -e "${blue}blue${default}"
  27. echo -e "${lightblue}lightblue${default}"
  28. echo -e "${magenta}magenta${default}"
  29. echo -e "${lightmagenta}lightmagenta${default}"
  30. echo -e "${cyan}cyan${default}"
  31. echo -e "${lightcyan}lightcyan${default}"
  32. echo -e "${darkgrey}darkgrey${default}"
  33. echo -e "${lightgrey}lightgrey${default}"
  34. echo -e "${white}white${default}"
  35. echo -e "${bold}bold${default}"
  36. echo -e "${dim}dim${default}"
  37. echo -e "${italic}italic${default}"
  38. echo -e "${underline}underline${default}"
  39. echo -e "${reverse}reverse${default}"
  40. core_exit.sh