aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHolden Rohrer <hr@hrhr.dev>2020-05-03 23:56:50 -0400
committerHolden Rohrer <hr@hrhr.dev>2020-05-03 23:56:55 -0400
commit07e700aebc1cea991fd68e82a46869a1d287a23f (patch)
tree79b8834d95008282cb398aab95325204759f17db
parent823dfd46f93e7248d5da9441983cd769323b2e60 (diff)
finally got this insane plan in order
So I want to lock on suspend but not on hibernate because my hard drive is encrypted, and this is a single user system, but xss-lock will only do suspend&hibernate or neither. So I wrapped lid close and i3lock with a script that locks and then hibernates. And xss-lock has sleep disabled so it now works.
-rw-r--r--home/.config/i3/config2
-rwxr-xr-xhome/.lock3
-rw-r--r--home/.xinitrc2
-rw-r--r--src/etc/systemd/logind.conf3
4 files changed, 7 insertions, 3 deletions
diff --git a/home/.config/i3/config b/home/.config/i3/config
index e5324a1..a94d916 100644
--- a/home/.config/i3/config
+++ b/home/.config/i3/config
@@ -24,7 +24,7 @@ bindsym $mod+$scr exec xrandr --output HDMI-2 --auto --right-of eDP-1 &&\
pactl set-card-profile 0 output:"hdmi-stereo-extra1"+input:analog-stereo
# Hibernation
-bindsym $mod+x exec i3lock -i ~/bg/sc.png -k && systemctl hybrid-sleep
+bindsym $mod+x exec ~/.lock
# Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below.
font pango:monospace 8
diff --git a/home/.lock b/home/.lock
new file mode 100755
index 0000000..3881bd3
--- /dev/null
+++ b/home/.lock
@@ -0,0 +1,3 @@
+#!/bin/sh
+i3lock -i ~/bg/sc.png -k &&\
+systemctl hybrid-sleep
diff --git a/home/.xinitrc b/home/.xinitrc
index cee79e8..16e53fb 100644
--- a/home/.xinitrc
+++ b/home/.xinitrc
@@ -1,5 +1,5 @@
picom -b
-xss-lock --ignore-sleep -- i3lock --nofork -i ~/bg/sc.png -k &
+xss-lock --ignore-sleep -- ~/.lock &
setxkbmap -layout us -variant dvp -option caps:escape
feh --bg-fill --no-fehbg ~/bg/sc.png
st &
diff --git a/src/etc/systemd/logind.conf b/src/etc/systemd/logind.conf
index 990f437..e4d6944 100644
--- a/src/etc/systemd/logind.conf
+++ b/src/etc/systemd/logind.conf
@@ -1,2 +1,3 @@
-HandleLidSwitch=hybrid-sleep
+[Login]
HandlePowerKey=hibernate
+HandleLidSwitch=lock