blob: efb3dbb837226521ce201c7f19154412328c90a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#!/bin/sh
#----------------------------------------------------
# Author: Florian "Bluewind" Pritz <flo@xssn.at>
#
# Licensed under WTFPL v2
# (see COPYING for full license text)
#
#----------------------------------------------------
# managing script for locking the screen
#----------------------------------------------------
lock () {
# gajim-remote change_status away &
# echo "command /away afk" | ssh mistral 'socat stdin unix-connect:.irssi/socket'
xset dpms 2 2 2
# i3lock -n -t -i ~flo/backgrounds/lockscreen.png
slock
}
unlock () {
xset dpms 0 0 0
# gajim-remote change_status online &
# echo "command /away" | ssh mistral 'socat stdin unix-connect:.irssi/socket'
}
#if pidof i3lock &> /dev/null; then exit 1; fi
if pidof slock &> /dev/null; then exit 1; fi
(lock && unlock) &
|