summaryrefslogtreecommitdiff
path: root/x11-misc/myi3lock/files
diff options
context:
space:
mode:
authorKarel Kočí <cynerd@email.cz>2019-01-16 10:49:36 +0100
committerKarel Kočí <cynerd@email.cz>2019-01-16 10:49:36 +0100
commit8c1ee931b51faa7c0db7cf571512075490648c27 (patch)
tree7da29409fa2f1082b1de2e896b51e18b96573651 /x11-misc/myi3lock/files
parent161ffc8d8d50065b613b9759d6f8e857c2fed06b (diff)
downloadgentoo-personal-overlay-8c1ee931b51faa7c0db7cf571512075490648c27.tar.gz
gentoo-personal-overlay-8c1ee931b51faa7c0db7cf571512075490648c27.tar.bz2
gentoo-personal-overlay-8c1ee931b51faa7c0db7cf571512075490648c27.zip
x11-misc/myi3lock: use elogind
This tweaks myi3lock to use elogind. It no longer requires pm-utils and is locked with daemon waiting for logind event.
Diffstat (limited to 'x11-misc/myi3lock/files')
-rwxr-xr-xx11-misc/myi3lock/files/pm-utils-lock13
1 files changed, 0 insertions, 13 deletions
diff --git a/x11-misc/myi3lock/files/pm-utils-lock b/x11-misc/myi3lock/files/pm-utils-lock
deleted file mode 100755
index 901b1b1..0000000
--- a/x11-misc/myi3lock/files/pm-utils-lock
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-#
-# 10sleep: lock i3 season before suspend
-
-case "$1" in
- hibernate|suspend)
- for socket in $(find /run/user/*/i3 /tmp/i3-* -name ipc-socket\* 2>/dev/null); do
- i3-msg -s $socket "exec myi3lock"
- done
- ;;
- *) exit $NA
- ;;
-esac