#+begin_src conf
exec xrdb .Xresources
exec dunst
+exec pgrep -x "systemd-inhibit" || \
+ systemd-inhibit --what=handle-power-key --who=aminb \
+ --why="Handle power button in sway" sleep infinity
+
### Variables
# super
set $mod Mod4
}
bindsym $mod+Shift+r mode "resize"
+#
+# Power button
+#
+set $locker swaylock && sleep 1
+
+set $mode_system System (l)ock, (e)xit sway, (s)uspend, (h)ibernate, (r)eboot, (S)hutdown
+mode "$mode_system" {
+ bindsym l exec $locker, mode "default"
+ bindsym e exec swaymsg exit, mode "default"
+ bindsym s exec $locker && systemctl suspend, mode "default"
+ bindsym h exec $locker && systemctl hibernate, mode "default"
+ bindsym r exec systemctl reboot, mode "default"
+ bindsym Shift+s exec systemctl poweroff -i, mode "default"
+
+ # back to normal: Enter, Escape, or q
+ bindsym Return mode "default"
+ bindsym Escape mode "default"
+ bindsym q mode "default"
+}
+bindsym XF86PowerOff mode "$mode_system"
+
#
# Status Bar:
#
}
# font pango: benis uushi 9
-font pango: Ubuntu Mono 9
+font pango: Ubuntu Mono 11
include /etc/sway/config.d/*
#+end_src