mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 14:59:27 -05:00
31 lines
1.4 KiB
Lua
31 lines
1.4 KiB
Lua
-- put former exec-once commands inside the func and former exec commands outside
|
|
hl.on("hyprland.start", function ()
|
|
|
|
-- Bar, wallpaper
|
|
hl.exec_cmd("~/.config/hypr/hyprland/scripts/start_geoclue_agent.sh")
|
|
hl.exec_cmd("qs -c $qsConfig")
|
|
hl.exec_cmd("~/.config/hypr/custom/scripts/__restore_video_wallpaper.sh")
|
|
|
|
-- Core components (authentication, lock screen, notification daemon)
|
|
hl.exec_cmd("gnome-keyring-daemon --start --components=secrets")
|
|
hl.exec_cmd(hypridle)
|
|
hl.exec_cmd("dbus-update-activation-environment --all")
|
|
hl.exec_cmd("sleep 1 && dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP") -- Some fix idk
|
|
|
|
-- Audio
|
|
--hl.exec_cmd("easyeffects --hide-window --service-mode")
|
|
|
|
-- Clipboard: history
|
|
--hl.exec_cmd("wl-paste --watch cliphist store")
|
|
hl.exec_cmd("wl-paste --type text --watch bash -c 'cliphist store && qs -c $qsConfig ipc call cliphistService update'")
|
|
hl.exec_cmd("wl-paste --type image --watch bash -c 'cliphist store && qs -c $qsConfig ipc call cliphistService update'")
|
|
|
|
-- Cursor
|
|
hl.exec_cmd("hyprctl setcursor Bibata-Modern-Classic 24")
|
|
|
|
-- Fix dock pinned apps not launching properly (https://github.com/end-4/dots-hyprland/issues/2200)
|
|
-- This causes https://github.com/end-4/dots-hyprland/issues/2427
|
|
-- hl.exec_cmd("sleep 3.5 && hyprctl reload && sleep 0.5 && touch ~/.config/quickshell/ii/shell.qml")
|
|
|
|
end)
|