about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2022-10-04 19:35:13 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2022-10-04 19:35:13 +0200
commit50ad171eea9db5ccb36fce2592e047c3282975ff (patch)
tree896b956c4d9170460059a43cb93d768b9d495c5f
parent970f37697358574e127019eb0ee2f5725ec05ce0 (diff)
downloaddwm-50ad171eea9db5ccb36fce2592e047c3282975ff.tar.gz
bump version to 6.4 6.4 master
-rw-r--r--config.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mk b/config.mk
index 81c493e..ef8acf7 100644
--- a/config.mk
+++ b/config.mk
@@ -1,5 +1,5 @@
 # dwm version
-VERSION = 6.3
+VERSION = 6.4
 
 # Customize below to fit your system
 
1 20:52:31 +0100 committer hut <hut@lavabit.com> 2010-03-12 00:46:47 +0100 added two new colorschemes using 88 colors' href='/akspecs/ranger/commit/doc/print_colors.py?h=v1.9.1&id=a0fdb913401a6f28b1dfbca248d41c147b12cd20'>a0fdb913 ^
d1a1173d ^
b3d031a9 ^
792406e7 ^
b3d031a9 ^
1687e0f4 ^
792406e7 ^

b3d031a9 ^

792406e7 ^
b3d031a9 ^
1687e0f4 ^
792406e7 ^
d1a1173d ^


b3d031a9 ^
d1a1173d ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
                     




                                                                             
                                                                  
 
             
 
 
               
              
                               
                                              
                
                                                 
                                

                    

                                                                             
        
                                   
                        
            


                                                          
                                   

                 
#!/usr/bin/env python
"""
You can use this tool to display all supported colors and their color number.
It will exit after a keypress.
"""

from __future__ import (absolute_import, division, print_function)

import curses


@curses.wrapper
def main(win):
    def print_all_colors(attr):
        for color in range(-1, curses.COLORS):
            try:
                curses.init_pair(color, color, 0)
            except curses.error:
                pass
            else:
                win.addstr(str(color) + ' ', curses.color_pair(color) | attr)
    curses.start_color()
    try:
        curses.use_default_colors()
    except curses.error:
        pass
    win.addstr("available colors: %d\n\n" % curses.COLORS)
    print_all_colors(0)
    win.addstr("\n\n")
    print_all_colors(curses.A_BOLD)
    win.refresh()
    win.getch()