mirror of
https://github.com/Raymo111/i3lock-color.git
synced 2024-11-03 04:23:38 -05:00
44 lines
878 B
Bash
Executable file
44 lines
878 B
Bash
Executable file
#!/bin/sh
|
|
|
|
B='#00000000' # blank
|
|
C='#ffffff22' # clear ish
|
|
D='#ff00ffcc' # default
|
|
T='#ee00eeee' # text
|
|
W='#880000bb' # wrong
|
|
V='#bb00bbbb' # verifying
|
|
|
|
./x86_64-pc-linux-gnu/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 2 \
|
|
|
|
# --veriftext="Drinking verification can..."
|
|
# --wrongtext="Nope!"
|
|
# --textsize=20
|
|
# --modsize=10
|
|
# --timefont=comic-sans
|
|
# --datefont=monofur
|
|
# etc
|