i3lock-color

The world's most popular non-default computer lockscreen.
Index Commits Files Refs README LICENSE
commit 5a5741bc22d4c83601cfee2aa9b751e471ef2699
parent e4301604e5c5aaf248c0b116003688716f14a2c0
Author: Chris Guillott <chris@techfo.xyz>
Date:   Fri, 14 Oct 2016 21:03:38 -0400

add example lock script

Diffstat:
Alock.sh | 38++++++++++++++++++++++++++++++++++++++
1 file changed, 38 insertions(+), 0 deletions(-)
diff --git a/lock.sh b/lock.sh
@@ -0,0 +1,38 @@
+#!/bin/zsh
+#scrot /tmp/screenshot.png
+#i3lock
+#convert /tmp/screenshot.png -blur 0x5 /tmp/screenshot.png
+#convert /tmp/screenshot.png -scale 10% -scale 1000% /tmp/screenshot.png
+#pkill i3lock && i3lock -i /tmp/screenshot.png
+
+#IMG=/tmp/screenshot.png
+IMG=/home/arcana/wall/arcwall2_1080.png
+
+B='#00000000'  # blank
+C='#ffffff22'  # clear ish
+D='#ff00ffcc'  # default
+T='#ee00eeee'  # text
+W='#880000bb'  # wrong
+V='#bb00bbbb'  # verifying
+
+./i3lock              \
+--image $IMG          \
+--insidevercolor=$C   \
+--ringvercolor=$V     \
+\
+--insidewrongcolor=$C \
+--ringwrongcolor=$W   \
+\
+--insidecolor=$B      \
+--ringcolor=$D        \
+--linecolor=$B        \
+--separatorcolor=$D   \
+\
+--textcolor=$T        \
+--keyhlcolor=$W       \
+--bshlcolor=$W        \
+\
+--screen 0            \
+--clock               \
+--timestr="%H:%M:%S"  \
+--datestr="%A, %m %Y"