From a4a0d5e805604cd2fb70a459ebd3dd216ad0e727 Mon Sep 17 00:00:00 2001 From: winston Date: Fri, 9 Dec 2022 06:58:37 +0100 Subject: [PATCH] chore(scripts): restore i3exit This partially reverts commit e80aeb96be8ff1f70e2162a23a80e87f4c30364d. --- dot_local/bin/executable_i3exit | 35 +++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 dot_local/bin/executable_i3exit diff --git a/dot_local/bin/executable_i3exit b/dot_local/bin/executable_i3exit new file mode 100644 index 0000000..c0bf676 --- /dev/null +++ b/dot_local/bin/executable_i3exit @@ -0,0 +1,35 @@ +#!/bin/sh + +# with openrc use loginctl +[ "$(cat /proc/1/comm)" = "systemd" ] && logind=systemctl || logind=loginctl + +case "$1" in + lock) + xscreensaver-command -lock + ;; + logout) + i3-msg exit + ;; + switch_user) + dm-tool switch-to-greeter + ;; + suspend) + xscreensaver-command -lock && $logind suspend + ;; + hibernate) + xscreensaver-command -lock && $logind hibernate + ;; + reboot) + $logind reboot + ;; + shutdown) + $logind poweroff + ;; + *) + echo "== ! i3exit: missing or invalid argument ! ==" + echo "Try again with: lock | logout | switch_user | suspend | hibernate | reboot | shutdown" + exit 2 +esac + +exit 0 +