generate live video wallpaper

This commit is contained in:
leminlimez
2025-03-22 20:31:31 -04:00
parent 8dfa439faf
commit 82d7555bae
22 changed files with 221 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
import sys
from os import path, getcwd
def get_bundle_files(name: str):
try:
return path.join(sys._MEIPASS, name)
except:
return path.join(getcwd(), name)