Remove secrets and auto-start actions and update imports
Some checks failed
Ansible Lint Check / check-ansible (push) Successful in 4s
Nix Format Check / check-format (push) Successful in 1m14s
Python Lint Check / check-python (push) Failing after 6s

This commit is contained in:
2025-09-23 13:59:48 +00:00
parent 40063cfe6b
commit 8971d087a3
14 changed files with 58 additions and 326 deletions

0
bin/helpers/__init__.py Normal file
View File

View File

@@ -7,6 +7,8 @@ import random
import shutil
import datetime
"""Helper functions for the dotfiles system."""
try:
import pyfiglet
except ImportError:
@@ -157,7 +159,7 @@ def ensure_dependencies():
if missing_packages:
printfe("yellow", f"Missing dependencies: {', '.join(missing_packages)}")
install = input("Would you like to install them now? (y/n): ").lower()
if install == "y" or install == "yes":
if install in ("y", "yes"):
printfe("cyan", "Installing missing dependencies...")
for package in missing_packages:
printfe("blue", f"Installing {package}...")