feat: use ctp python lib instead of hardcoded colors (#55)

This commit is contained in:
Pranav Santhosh
2022-12-08 21:06:51 +05:30
committed by GitHub
parent 34ac795d4e
commit 17aaa5b36c
9 changed files with 88 additions and 244 deletions

View File

@@ -43,7 +43,7 @@ parser.add_argument('--accent', '-a',
parser.add_argument("--size", "-s",
metavar='Size of the theme',
type=str,
default="compact",
default="standard",
dest="size",
choices=['standard', 'compact'],
help='Size variant of the theme. Can be standard or compact')
@@ -51,7 +51,7 @@ parser.add_argument("--size", "-s",
parser.add_argument('--tweaks',
metavar='Colloid specific tweaks',
type=str,
default=["rimless"],
default=[],
nargs='+',
dest="tweaks",
choices=['black', 'rimless', 'normal'],