15 lines
607 B
Lua
15 lines
607 B
Lua
-- Autostart. See https://wiki.hypr.land/Configuring/Basics/Autostart/
|
|
hl.on("hyprland.start", function()
|
|
hl.exec_cmd("hyprctl setcursor catppuccin-mocha-dark-cursors 28 &")
|
|
hl.exec_cmd("systemctl --user start plasma-polkit-agent &")
|
|
hl.exec_cmd("waybar & mako & hyprpaper & hypridle & wluma & hyprshell run &")
|
|
hl.exec_cmd("1password --silent &")
|
|
hl.exec_cmd("systemctl --user start hyprland-session.target &")
|
|
hl.exec_cmd("blueman-applet &")
|
|
hl.exec_cmd("sunsetr &")
|
|
end)
|
|
|
|
hl.on("hyprland.shutdown", function()
|
|
os.execute("systemctl --user stop hyprland-session.target && sleep 0.1")
|
|
end)
|