command_dev_ui.sh 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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_reset
  11. # Load ANSI colors
  12. fn_ansi_loader
  13. # Print supported colors
  14. echo -e "${default}default"
  15. echo -e "${black}black${default}"
  16. echo -e "${red}red${default}"
  17. echo -e "${lightred}lightred${default}"
  18. echo -e "${green}green${default}"
  19. echo -e "${lightgreen}lightgreen${default}"
  20. echo -e "${yellow}yellow${default}"
  21. echo -e "${lightyellow}lightyellow${default}"
  22. echo -e "${blue}blue${default}"
  23. echo -e "${lightblue}lightblue${default}"
  24. echo -e "${magenta}magenta${default}"
  25. echo -e "${lightmagenta}lightmagenta${default}"
  26. echo -e "${cyan}cyan${default}"
  27. echo -e "${lightcyan}lightcyan${default}"
  28. echo -e "${darkgrey}darkgrey${default}"
  29. echo -e "${lightgrey}lightgrey${default}"
  30. echo -e "${white}white${default}"
  31. echo -e "${bold}bold${default}"
  32. echo -e "${dim}dim${default}"
  33. echo -e "${italic}italic${default}"
  34. echo -e "${underline}underline${default}"
  35. echo -e "${reverse}reverse${default}"