.dotfiles/.config/hypr/hyprland.lua

18 lines
500 B
Lua

require("dracula")
require("defaults")
require("host")
require("env")
require("vars")
require("binds")
require("rules")
hl.on("hyprland.start", function()
hl.exec_cmd("autostart-manage sync wayland,hyprland")
hl.exec_cmd("autostart-manage run-wayland")
end)
-- MIGRATION_NOTE: 'exec' (non-once) commands — these run on every reload.
-- Consider if they should be in hyprland.start or another event.
hl.on("monitor.layout_changed", function()
hl.exec_cmd("xsetroot -cursor_name left_ptr")
end)