blob: cd14371d0b96c3c20beb0f71caa0b7fad0f61e67 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
)
)
)
|