Initial import: Lua config, trimmed omarchy scripts, theme system

This commit is contained in:
2026-06-11 19:06:22 +02:00
commit 835a9aa3b5
536 changed files with 12459 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
#!/bin/bash
# archypr:summary=Run the full Omarchy update pipeline
# archypr:requires-sudo=true
set -e
# Ensure screensaver/sleep doesn't set in during updates
hyprctl dispatch tagwindow +noidle &>/dev/null || true
# Perform all update steps
archypr-pdate-keyring
archypr-pdate-available-reset
archypr-pdate-system-pkgs
archypr-igrate
archypr-pdate-aur-pkgs
archypr-pdate-orphan-pkgs
archypr-ook post-update
archypr-pdate-analyze-logs
archypr-pdate-restart
# Re-enable screensaver/sleep after updates
hyprctl dispatch tagwindow -- -noidle &>/dev/null || true