mirror of
https://github.com/daylinmorgan/monolisa-nerdfont-patch.git
synced 2024-11-09 16:43:14 -06:00
30 lines
646 B
Python
Executable file
30 lines
646 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
EXTS = ["otf", "ttf", "woff", "woff2"]
|
|
|
|
|
|
def find_files(search_path, exts=None):
|
|
return (
|
|
[f for ext in exts for f in search_path.glob(f"**/*.{ext}")]
|
|
if exts
|
|
else [f for f in search_path.rglob("*") if f.is_file()]
|
|
)
|
|
|
|
|
|
def main():
|
|
if len(sys.argv) == 1:
|
|
print("please specify directory to search")
|
|
exit(1)
|
|
|
|
search_path = Path(sys.argv[1])
|
|
exts = sys.argv[2].split(",") if len(sys.argv) == 3 else EXTS
|
|
|
|
for f in find_files(search_path, exts):
|
|
sys.stdout.write(f"-f '{f}' ")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|