mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-06 04:29:34 +02:00
The bin names should reflect the thing they manage. `refresh bar` is misleading because the command resets the entire shell.json (which holds plugins beyond just the bar), and `restart quickshell` names the runtime rather than the product. Both now end in `-shell` to match the rest of omarchy-shell. Updates every caller in autostart, the menu, voxtype helpers, and the shell README. No behavior changes.
18 lines
780 B
Lua
18 lines
780 B
Lua
hl.on("hyprland.start", function()
|
|
hl.exec_cmd("uwsm-app -- hypridle")
|
|
hl.exec_cmd("omarchy-restart-shell")
|
|
hl.exec_cmd("uwsm-app -- fcitx5 --disable notificationitem")
|
|
hl.exec_cmd("uwsm-app -- swaybg -i ~/.config/omarchy/current/background -m fill")
|
|
hl.exec_cmd("/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1")
|
|
hl.exec_cmd("omarchy-first-run")
|
|
hl.exec_cmd("omarchy-powerprofiles-init")
|
|
hl.exec_cmd("uwsm-app -- omarchy-hyprland-monitor-watch")
|
|
|
|
-- Slow app launch fix -- set systemd vars.
|
|
hl.exec_cmd("systemctl --user import-environment $(env | cut -d'=' -f 1)")
|
|
hl.exec_cmd("dbus-update-activation-environment --systemd --all")
|
|
|
|
-- Run post-boot hooks after startup config has loaded.
|
|
hl.exec_cmd("sleep 2 && omarchy-hook post-boot")
|
|
end)
|