This commit is contained in:
2025-08-09 14:41:44 +02:00
parent b57943ee4b
commit d23df8df84
25 changed files with 463 additions and 159 deletions

17
setup_system.py Normal file
View File

@@ -0,0 +1,17 @@
import sys
from utils import choice_files, copy_with_structure, require_root, log_info, log_error, CYAN, RESET
SRC_DIR = "system_files"
DST_DIR = "/"
CHOICES = {}
def main():
require_root()
override_all = input(f"{CYAN}Override all existing system files? (Y/N): {RESET}").strip().lower() == 'y'
choice_files(SRC_DIR, DST_DIR, CHOICES, override_all)
copy_with_structure(SRC_DIR, DST_DIR, override_all)
if __name__ == '__main__':
main()