Fork the desktop off Omarchy as a self-contained system

This commit is contained in:
2026-09-19 23:50:39 -04:00
parent 16a56f49a1
commit 9501f2bb4d
559 changed files with 43273 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
hl.on("hyprland.start", function()
-- Slow app launch fix -- set systemd vars before starting session services.
hl.exec_cmd("systemctl --user import-environment $(env | cut -d'=' -f 1)")
hl.exec_cmd("dbus-update-activation-environment --systemd --all")
hl.exec_cmd("blob-launch-shell")
hl.exec_cmd("blob-provision-first-run")
hl.exec_cmd("blob-powerprofiles-init")
hl.exec_cmd(o.launch("blob-hypr-monitor-watch"))
hl.exec_cmd(o.launch("udiskie --automount --no-notify --no-tray"))
-- Run post-boot hooks after startup config has loaded.
hl.exec_cmd("sleep 2 && blob-hook post-boot")
end)