Compare commits

..

No commits in common. "031da040800d5763897136c74e676ebd80eb7bfa" and "14a74a18d2580d52d2f0fde092a6d0fa59c4b959" have entirely different histories.

2 changed files with 15 additions and 13 deletions

View File

@ -79,10 +79,9 @@ output "Acer Technologies XV272U V R307036FE4208" adaptive_sync on
# -c 000000 sets the color in RGB (no alpha supported)
# use -i to set an image
exec swayidle -w \
timeout 300 'swaylock -f -e -i "$HOME/.cache/backgrounds/lockscreen"' \ # lock screen after 5 min
timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \ # poweroff display after 10 min
before-sleep 'swaylock -f -e -i "$HOME/.cache/backgrounds/lockscreen"' \ # lock screen before going to sleep
before-sleep 'playerctl pause' # pause media before sleeping
timeout 300 'swaylock -f -e -i "$HOME/.cache/backgrounds/lockscreen"' \
timeout 600 'swaymsg "output * power off"' resume 'swaymsg "output * power on"' \
before-sleep 'swaylock -f -e -i "$HOME/.cache/backgrounds/lockscreen"'
### Key bindings
#
@ -239,11 +238,11 @@ bindsym $mod+x mode "$mode_system"
set $mode_system System (l) lock, (e) logout, (r) reboot, (s) shutdown, (u) suspend
mode "$mode_system" {
bindsym l exec --no-startup-id ~/.config/sway/sway-scripts/exit.sh lock, mode "default"
bindsym e exec --no-startup-id ~/.config/sway/sway-scripts/exit.sh logout, mode "default"
bindsym r exec --no-startup-id ~/.config/sway/sway-scripts/exit.sh reboot, mode "default"
bindsym s exec --no-startup-id ~/.config/sway/sway-scripts/exit.sh shutdown, mode "default"
bindsym u exec --no-startup-id ~/.config/sway/sway-scripts/exit.sh suspend, mode "default"
bindsym l exec PLACEHOLDER, mode "default"
bindsym e exec PLACEHOLDER, mode "default"
bindsym r exec PLACEHOLDER, mode "default"
bindsym s exec PLACEHOLDER, mode "default"
bindsym u exec PLACEHOLDER, mode "default"
# back to normal: Enter or Escape
bindsym Return mode "default"

View File

@ -1,17 +1,20 @@
#!/usr/bin/env sh
#!/bin/sh
case "$1" in
lock)
swaylock -f -e -i "$HOME/.cache/backgrounds/lockscreen"
#betterlockscreen -l; dunstctl set-paused true
betterlockscreen -l
;;
logout)
swaymsg exit
i3-msg exit
;;
suspend)
#betterlockscreen -s
systemctl suspend
;;
hibernate)
exit 1
systemctl hibernate
;;
reboot)
systemctl reboot