Add Remix Icon themes
This commit is contained in:
+13
-1
@@ -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("")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user