Skip to content

Instantly share code, notes, and snippets.

@dbonates
Created June 1, 2019 20:44
Show Gist options
  • Select an option

  • Save dbonates/f73e77580ce88fa64063006d4ef84286 to your computer and use it in GitHub Desktop.

Select an option

Save dbonates/f73e77580ce88fa64063006d4ef84286 to your computer and use it in GitHub Desktop.
list tmux available colors
for i in {0..255}; do printf "\x1b[38;5;${i}mcolour%-5i\x1b[0m" $i ; if ! (( ($i + 1 ) % 8 )); then echo ; fi ; done
# ex: choose your color than execute:
# set -g status-fg colour28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment