aboutsummaryrefslogtreecommitdiff
path: root/laptop/lid-button.sh
diff options
context:
space:
mode:
Diffstat (limited to 'laptop/lid-button.sh')
-rwxr-xr-xlaptop/lid-button.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/laptop/lid-button.sh b/laptop/lid-button.sh
new file mode 100755
index 0000000..601af5a
--- /dev/null
+++ b/laptop/lid-button.sh
@@ -0,0 +1,15 @@
+#!/bin/sh
+case "$3" in
+ close)
+ logger "LID close on custom";
+ if [ "$(ps cax | grep i3)" ]; then
+ su yaroslav -c "DISPLAY=:0 i3 exec 'i3session suspend'"
+ else
+ systemctl suspend
+ fi
+ ;;
+ open)
+ logger "LID open on custom" ;;
+ *)
+ logger "LID undefined action $1" ;;
+esac