added installing my apps + custom fastfetch + fixes

This commit is contained in:
2026-06-08 23:00:07 -05:00
parent ac0b3447ad
commit ee79809332
9 changed files with 82 additions and 12 deletions
+4 -3
View File
@@ -22,8 +22,7 @@ def apply_safe_config(sway):
def boot(base):
base = os.path.expanduser(base) if base else ""
base = os.path.expanduser(base)
with open(Logs, "w") as f:
return subprocess.run(
["python3", os.path.join(base, "main/swayconfig.py")],
@@ -35,7 +34,9 @@ def boot(base):
def main():
sway = Swayipc()
base = get_base()
if not base:
print("BASE_SWAY isnt defined correctly. This WILL cause problems with startup.")
return
rc = boot(base)
if rc != 0: