aboutsummaryrefslogtreecommitdiff
path: root/system/etc/pm
diff options
context:
space:
mode:
authorKarel Kočí <karel.koci@nic.cz>2017-08-15 13:02:05 +0200
committerKarel Kočí <karel.koci@nic.cz>2017-08-15 13:02:05 +0200
commit567c309656a3833aca82563853a739139f9045a5 (patch)
treea5ead7afd2ec1654a4919feaac50b910bd909868 /system/etc/pm
parent91f745b19d9e38b65103fb22b84fd246d84a5aff (diff)
downloadmyconfigs-567c309656a3833aca82563853a739139f9045a5.tar.gz
myconfigs-567c309656a3833aca82563853a739139f9045a5.tar.bz2
myconfigs-567c309656a3833aca82563853a739139f9045a5.zip
Drop system configuration (applicable only to desktop)
Diffstat (limited to 'system/etc/pm')
-rwxr-xr-xsystem/etc/pm/sleep.d/10lock13
1 files changed, 0 insertions, 13 deletions
diff --git a/system/etc/pm/sleep.d/10lock b/system/etc/pm/sleep.d/10lock
deleted file mode 100755
index baddcb4..0000000
--- a/system/etc/pm/sleep.d/10lock
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-#
-# 10sleep: lock i3 season before suspend
-
-case "$1" in
- hibernate|suspend)
- for socket in `find /tmp/i3-* -name ipc-socket.*`; do
- i3-msg -s $socket "exec i3lock -d -c 000000"
- done
- ;;
- *) exit $NA
- ;;
-esac