summaryrefslogtreecommitdiff
path: root/x11-misc/myi3lock/files/pm-utils-lock
blob: 901b1b17758b15802c2688518b7d354a118d2f89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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