xiwal

Generate terminal color schemes
git clone https://git.ce9e.org/xiwal.git

commit
cc517405234c5152f16e8d3ce80d823efc1f2e0e
parent
5552f891a959763fa4130662495c62a8252fc5d7
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2019-11-15 08:16
fix variable name collision

Diffstat

M wal/__main__.py 6 +++---

1 files changed, 3 insertions, 3 deletions


diff --git a/wal/__main__.py b/wal/__main__.py

@@ -25,11 +25,11 @@ def main():
   25    25 	if len(colors) < 6:
   26    26 		sys.exit('Need at least 6 colors')
   27    27 
   28    -1 	scheme = scheme.colors2scheme(colors)
   -1    28 	s = scheme.colors2scheme(colors)
   29    29 
   30    -1 	print(';'.join(scheme))
   -1    30 	print(';'.join(s))
   31    31 	term.palette()
   32    -1 	term.apply(scheme)
   -1    32 	term.apply(s)
   33    33 
   34    34 
   35    35 if __name__ == '__main__':