mirror of
https://github.com/Raymo111/i3lock-color.git
synced 2024-11-11 13:50:52 -05:00
0d5fb3da8a
Remove commented lines in sample locks, fix their executable paths, move all examples to examples folder, update readme with new screenshot path
36 lines
706 B
Bash
36 lines
706 B
Bash
#!/bin/sh
|
|
|
|
B='#00000000' # blank
|
|
C='#ffffff22' # clear ish
|
|
D='#ff00ffcc' # default
|
|
T='#ee00eeee' # text
|
|
W='#880000bb' # wrong
|
|
V='#bb00bbbb' # verifying
|
|
|
|
i3lock \
|
|
--insidevercolor=$C \
|
|
--ringvercolor=$V \
|
|
\
|
|
--insidewrongcolor=$C \
|
|
--ringwrongcolor=$W \
|
|
\
|
|
--insidecolor=$B \
|
|
--ringcolor=$D \
|
|
--linecolor=$B \
|
|
--separatorcolor=$D \
|
|
\
|
|
--verifcolor=$T \
|
|
--wrongcolor=$T \
|
|
--timecolor=$T \
|
|
--datecolor=$T \
|
|
--layoutcolor=$T \
|
|
--keyhlcolor=$W \
|
|
--bshlcolor=$W \
|
|
\
|
|
--screen 1 \
|
|
--blur 5 \
|
|
--clock \
|
|
--indicator \
|
|
--timestr="%H:%M:%S" \
|
|
--datestr="%A, %m %Y" \
|
|
--keylayout 1 \
|