summaryrefslogtreecommitdiff
path: root/hypr/hypridle.conf
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2024-06-04 22:19:42 -0500
committerzachir <zachir@librem.one>2024-06-04 22:19:42 -0500
commit8c08e83eae3e70ffcb8fc1f847571654a2cabb42 (patch)
tree04c7bcfff3c89188b5479e79fbc141beea41a173 /hypr/hypridle.conf
parentaab09f4d7719895ac4093ec668a19f40b0b6dfd9 (diff)
Add hypridle and hyprlock configs
Adding in configs for these to replace swayidle and swaylock/waylock.
Diffstat (limited to 'hypr/hypridle.conf')
-rw-r--r--hypr/hypridle.conf13
1 files changed, 13 insertions, 0 deletions
diff --git a/hypr/hypridle.conf b/hypr/hypridle.conf
new file mode 100644
index 0000000..9b6ea02
--- /dev/null
+++ b/hypr/hypridle.conf
@@ -0,0 +1,13 @@
+general {
+ lock_cmd = hyprlock # dbus/sysd lock command (loginctl lock-session)
+ unlock_cmd = # same as above, but unlock
+ before_sleep_cmd = swaylock # command ran before sleep
+ after_sleep_cmd = # command ran after sleep
+ ignore_dbus_inhibit = false # whether to ignore dbus-sent idle-inhibit requests (used by e.g. firefox or steam)
+}
+
+listener {
+ timeout = 600 # in seconds
+ on-timeout = loginctl lock-session # command to run when timeout has passed
+ on-resume = # command to run when activity is detected after timeout has fired.
+}