Skip to content

Instantly share code, notes, and snippets.

@shaybensasson
Created April 18, 2020 08:25
Show Gist options
  • Select an option

  • Save shaybensasson/f4310d98ebd2d977cb53c86d3e868eb1 to your computer and use it in GitHub Desktop.

Select an option

Save shaybensasson/f4310d98ebd2d977cb53c86d3e868eb1 to your computer and use it in GitHub Desktop.
print all tmux configurable colors
# https://superuser.com/a/1104214/362338
for i in {0..255}; do printf "\x1b[38;5;${i}mcolor%-5i\x1b[0m" $i ; if ! (( ($i + 1 ) % 8 )); then echo ; fi ; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment