bin: add ansi color test script

This commit is contained in:
xeruf 2021-11-07 03:48:08 +01:00
parent 85a7b4045d
commit c39cd682ef
2 changed files with 25 additions and 0 deletions

25
.local/bin/scripts/test-colors Executable file
View File

@ -0,0 +1,25 @@
#!/usr/bin/python
# https://stackoverflow.com/questions/4842424/list-of-ansi-color-escape-sequences
print("\\033[XXm")
for i in range(30,37+1):
print("\033[%dm%d\t\t\033[%dm%d" % (i,i,i+60,i+60));
print("\033[39m\\033[49m - Reset colour")
print("\\033[2K - Clear Line")
print("\\033[<L>;<C>H OR \\033[<L>;<C>f puts the cursor at line L and column C.")
print("\\033[<N>A Move the cursor up N lines")
print("\\033[<N>B Move the cursor down N lines")
print("\\033[<N>C Move the cursor forward N columns")
print("\\033[<N>D Move the cursor backward N columns")
print("\\033[2J Clear the screen, move to (0,0)")
print("\\033[K Erase to end of line")
print("\\033[s Save cursor position")
print("\\033[u Restore cursor position")
print(" ")
print("\\033[4m Underline on")
print("\\033[24m Underline off")
print("\\033[1m Bold on")
print("\\033[21m Bold off")