Added huge UI changes

This commit is contained in:
Mauro Balades
2024-04-21 02:23:18 +02:00
parent 89810a0be9
commit f02af579bd
20 changed files with 264 additions and 566 deletions

View File

@@ -1,16 +1,13 @@
import os
from update_newtab import update_newtab
def initialize_avatars():
os.system("cd src/browser/base/content/zen-avatars && python3 fetch-all-avatars.py")
def recompile_new_tab():
os.system("(cd ./engine/browser/components/newtab && ../../../mach npm install && ../../../mach npm install meow@9.0.0)")
os.system("cd ./engine && ./mach npm run bundle --prefix=browser/components/newtab")
def main():
initialize_avatars()
recompile_new_tab()
update_newtab()
if __name__ == "__main__":
main()