41 lines
798 B
Bash
Executable File
41 lines
798 B
Bash
Executable File
#!/bin/sh
|
|
|
|
B='#00000000' # blank
|
|
C='#50343444' # clear ish
|
|
D='#e6b790ff' # default
|
|
T='#a55f41bb' # text
|
|
W='#b7a56cff ' # wrong
|
|
V='#bb00bbbb' # verifying
|
|
I='#fceac655' # inside circle
|
|
|
|
i3lock \
|
|
--insidever-color=$I \
|
|
--ringver-color=$D \
|
|
\
|
|
--insidewrong-color=$I \
|
|
--ringwrong-color=$D \
|
|
\
|
|
--inside-color=$I \
|
|
--ring-color=$D \
|
|
--line-color=$B \
|
|
--separator-color=$D \
|
|
\
|
|
--verif-color=$T \
|
|
--wrong-color=$T \
|
|
--time-color=$T \
|
|
--date-color=$T \
|
|
--layout-color=$T \
|
|
--keyhl-color=$C \
|
|
--bshl-color=$C \
|
|
\
|
|
--screen 1 \
|
|
--blur 10 \
|
|
--clock \
|
|
--indicator \
|
|
--time-str="%H:%M:%S" \
|
|
\
|
|
--verif-text="Chosto ?" \
|
|
--wrong-text="LEURRE" \
|
|
--radius=110 \
|
|
--noinput-text="OH DIS DONC" \
|