From: Samir Benmendil Date: Wed, 10 Dec 2014 02:57:38 +0000 (+0000) Subject: bin: add script to output curses colors X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/3830653cd092e5ad246bbdfcac3633cd705024a0?hp=2b76520e8c1722782deb248b43c3fbcb15c47efc bin: add script to output curses colors --- diff --git a/bin/curses-color b/bin/curses-color new file mode 100755 index 0000000..39c584d --- /dev/null +++ b/bin/curses-color @@ -0,0 +1,20 @@ +#!/usr/bin/env python + +import curses + +def main(stdscr): + curses.start_color() + curses.use_default_colors() + for i in range(0, curses.COLORS): + curses.init_pair(i + 1, i, -1) + try: + for i in range(0, 256): + x = 4*(i % 16) + y = int(i / 16) + stdscr.addstr(y, x,str(i), curses.color_pair(i)) + except curses.ERR: + # End of screen reached + pass + stdscr.getch() + +curses.wrapper(main)