dotfiles/.config/i3/lock/lock.sh

41 lines
798 B
Bash
Raw Normal View History

#!/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 \
2022-01-30 23:52:57 +01:00
--insidever-color=$I \
--ringver-color=$D \
\
2022-01-30 23:52:57 +01:00
--insidewrong-color=$I \
--ringwrong-color=$D \
\
2022-01-30 23:52:57 +01:00
--inside-color=$I \
--ring-color=$D \
--line-color=$B \
--separator-color=$D \
\
2022-01-30 23:52:57 +01:00
--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 \
2022-01-30 23:52:57 +01:00
--time-str="%H:%M:%S" \
\
2022-01-30 23:52:57 +01:00
--verif-text="Chosto ?" \
--wrong-text="LEURRE" \
--radius=110 \
2022-01-30 23:52:57 +01:00
--noinput-text="OH DIS DONC" \