Add Remix Icon themes

This commit is contained in:
Veronica Berglyd Olsen
2025-01-10 18:49:23 +01:00
parent 586370188b
commit fbcf185c13
7 changed files with 388 additions and 16 deletions
+13 -1
View File
@@ -35,7 +35,7 @@ import zipfile
from pathlib import Path
from utils.icon_themes import processFontAwesome, processMaterialIcons
from utils.icon_themes import processFontAwesome, processMaterialIcons, processRemix
CURR_DIR = Path(__file__).parent
SETUP_DIR = CURR_DIR / "setup"
@@ -391,6 +391,18 @@ def buildIconTheme(args: argparse.Namespace) -> None:
},
})
if style in ("all", "remix"):
processRemix(workDir, iconsDir, {
"remix_outline": {
"name": "Remix Icon - Outline",
"filled": False,
},
"remix_filled": {
"name": "Remix Icon - Filled",
"filled": True,
},
})
print("Done")
print("")