Compare commits

..

2 Commits

Author SHA1 Message Date
wyj 4bbae7a78c fix: fix vrr 2026-06-12 16:19:36 -04:00
wyj 4614859248 fix: fix systemd unit 2026-06-12 16:19:36 -04:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ M.confs = {
misc = {
disable_hyprland_logo = true,
disable_splash_rendering = true,
vrr = true,
vrr = 3,
enable_swallow = true,
swallow_regex = "^(kitty|Alacritty)$",
background_color = colorscheme.background,
+1 -1
View File
@@ -7,7 +7,7 @@ local M = {}
local function start_swaync()
if settings["systemd"] then
local unit = "swaync.service"
local source = CONFIG_HOME .. "hypr/systemd/" .. unit
local source = HYPR .. "/systemd/" .. unit
if systemd.ensure_user_unit(unit, source) then
hl.exec_cmd("systemctl --user start swaync")
+1 -1
View File
@@ -8,7 +8,7 @@ local M = {}
local function start_swayosd()
if settings["systemd"] then
local unit = "swayosd.service"
local source = CONFIG_HOME .. "hypr/systemd/" .. unit
local source = HYPR .. "/systemd/" .. unit
if systemd.ensure_user_unit(unit, source) then
hl.exec_cmd("systemctl --user start swayosd")