9 ms·
Thank you. https://github.com/k4rthik/git-cal/commit/2c6b50b57fa818d943ccf4232ead37d866273af5 https://github.com/k4rthik/git-cal/commit/2c6b50b57fa818d943... s
by k4rthik 13y ago
Thank you.
https://github.com/k4rthik/git-cal/commit/2c6b50b57fa818d943ccf4232ead37d866273af5 https://github.com/k4rthik/git-cal/commit/2c6b50b57fa818d943...
should solve it partially (exit(1) if tput colors < 256)
- solox3 13y agoWeird, because before this check was introduced this morning, Konsole reported 8 colours, but rendered your git-cal correctly, using more than 8.
- LeonidasXIV 13y agoYes, apparently it does the same thing as gnome-terminal, which does not advertise its support for 256 colors.
- __david__ 13y agoKonsole may support more than 8 colors but if your TERM environment is set wrong then the OS won't know it can. If you bypass the OS and print the color escape sequences directly (as the script is doing, naughtily[1]) then it might just work. [1] The proper way is to use terminfo to output the escape sequences for you. See http://perldoc.perl.org/Term/Cap.html http://perldoc.perl.org/Term/Cap.html for how to do this with standard Perl. EDIT: I can't get this to work—Seems Perl has poor terminfo support. :-( "tput setaf 10" is the correct way from sh.
- k4rthik 13y agoYes, this change was reverted. + Now there is --ascii option to view the graph with some ascii characters instead of ANSI colors