From 51612623881a9a187bc1bae7165863e695af543d Mon Sep 17 00:00:00 2001 From: stupidcomputer Date: Fri, 7 Jun 2024 17:52:49 -0500 Subject: [PATCH] update statusbar setup.py to say GPLv3, not MIT --- builds/st/lightmode.h | 20 ++++++++++++++++++++ builds/statusbar/setup.py | 2 +- 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 builds/st/lightmode.h diff --git a/builds/st/lightmode.h b/builds/st/lightmode.h new file mode 100644 index 0000000..e70e37c --- /dev/null +++ b/builds/st/lightmode.h @@ -0,0 +1,20 @@ +/* Terminal colors (16 first used in escape sequence) */ +static const char *colorname[] = { + /* solarized light */ + "#eee8d5", /* 0: black */ + "#dc322f", /* 1: red */ + "#859900", /* 2: green */ + "#b58900", /* 3: yellow */ + "#268bd2", /* 4: blue */ + "#d33682", /* 5: magenta */ + "#2aa198", /* 6: cyan */ + "#073642", /* 7: white */ + "#fdf6e3", /* 8: brblack */ + "#cb4b16", /* 9: brred */ + "#93a1a1", /* 10: brgreen */ + "#839496", /* 11: bryellow */ + "#657b83", /* 12: brblue */ + "#6c71c4", /* 13: brmagenta*/ + "#586e75", /* 14: brcyan */ + "#002b36", /* 15: brwhite */ +}; diff --git a/builds/statusbar/setup.py b/builds/statusbar/setup.py index 493b970..5b3db72 100644 --- a/builds/statusbar/setup.py +++ b/builds/statusbar/setup.py @@ -7,7 +7,7 @@ setup( author_email = 'ryan@beepboop.systems', url = 'https://git.beepboop.systems/stupidcomputer/dot_testing', description = 'simple statusbar content program', - license = 'MIT', + license = 'GPLv3', entry_points = { 'console_scripts': [ 'statusbar = statusbar.statusbar:main'