Перевёл dotfiles на stow

This commit is contained in:
Alexander Neonxp Kiryukhin 2025-06-09 13:43:45 +03:00
parent 27416cef99
commit ced56f9e70
Signed by: NeonXP
SSH key fingerprint: SHA256:SVt7TjxbVc87m1QYaQziOJ0N3OCFURv2g76gD/UTTXI
172 changed files with 1292 additions and 100 deletions

33
config/hypr/hypridle.conf Normal file
View file

@ -0,0 +1,33 @@
$suspend_cmd = pidof steam || systemctl suspend || loginctl suspend
# General_settings
general {
before_sleep_cmd = hyprlock # command before sleep
ignore_dbus_inhibit = false # (used by e.g. firefox or steam)
}
# Screen_brightness
listener {
timeout = 300
on-timeout = brightnessctl s 20%
on-resume = brightnessctl s 100%
}
# Screen_lock
listener {
timeout = 600
on-timeout = hyprlock
}
# Screen_off
listener {
timeout = 780
on-timeout = hyprctl dispatch dpms off
on-resume = hyprctl dispatch dpms on
}
# Suspend
listener {
timeout = 1200
on-timeout = $suspend_cmd
}