aboutsummaryrefslogtreecommitdiff
path: root/.scripts/autolock
diff options
context:
space:
mode:
authorMarvin Borner2023-03-17 18:24:01 +0100
committerMarvin Borner2023-03-17 18:24:01 +0100
commita8a6c3a400174cf476ec8e75bb2e5a5b0afb34da (patch)
treef7fa93658fffd6dd7f8fd664f907fb1a8f3da772 /.scripts/autolock
parent031698ddaa8d7f8224358932b8e69e7f22d43963 (diff)
Script sync
Diffstat (limited to '.scripts/autolock')
-rwxr-xr-x.scripts/autolock26
1 files changed, 26 insertions, 0 deletions
diff --git a/.scripts/autolock b/.scripts/autolock
new file mode 100755
index 0000000..cd14371
--- /dev/null
+++ b/.scripts/autolock
@@ -0,0 +1,26 @@
+#!/bin/env sh
+
+islocked || exit 0 # already locked
+
+export XAUTHORITY=/home/melvin/.Xauthority
+export DISPLAY=:0
+export XDG_RUNTIME_DIR=/run/user/1000
+export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
+
+ishome && (
+ hasyubi || (
+ notify-send "intrusion detected" &
+ (
+ sleep 1
+ softpanic
+ )
+ )
+) || (
+ hasyubi || (
+ notify-send -u critical "connect key now or poweroff!" &
+ (
+ sleep 30
+ hasyubi || panic
+ )
+ )
+)