Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions hyprland/hypridle.conf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
general {
lock_cmd = notify-send "Locking soon..." # optional
before_sleep_cmd = loginctl lock-session
after_sleep_cmd = hyprctl dispatch 'hl.dsp.dpms({ action = "{enable}" })'
after_sleep_cmd = hyprctl dispatch dpms on
}

listener {
timeout = 600
on-timeout = hyprctl dispatch 'hl.dsp.dpms({ action = "{disable}" })'
on-resume = hyprctl dispatch 'hl.dsp.dpms({ action = "{enable}" })'
on-timeout = hyprctl dispatch dpms off
on-resume = hyprctl dispatch dpms on
}
2 changes: 1 addition & 1 deletion hyprland/hyprland.lua
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ local menu = "rofi -show drun -config ~/.config/rofi/config.rasi"
-- end)

hl.on("hyprland.start", function ()
hl.exec_cmd("swaybg -i swaybg -i Git/my-configs/img/bw_geometry.png -m fill & waybar")
hl.exec_cmd("swaybg -i ~/.config/hypr/wallpaper.jpg -m fill & waybar")
hl.exec_cmd("hypridle")
end
)
Expand Down
Loading