mirror of
https://github.com/Raymo111/i3lock-color.git
synced 2025-02-17 15:55:52 -05:00
38 lines
728 B
Bash
38 lines
728 B
Bash
#!/bin/sh
|
|
|
|
B='#00000000' # blank
|
|
C='#ffffff22' # clear ish
|
|
D='#ff00ffcc' # default
|
|
T='#ee00eeee' # text
|
|
W='#880000bb' # wrong
|
|
V='#bb00bbbb' # verifying
|
|
|
|
i3lock \
|
|
--blur 5 \
|
|
--bar-indicator \
|
|
--bar-pos y+h \
|
|
--bar-direction 1 \
|
|
--bar-max-height 50 \
|
|
--bar-base-width 50 \
|
|
--bar-color 000000cc \
|
|
--keyhl-color 880088cc \
|
|
--bar-periodic-step 50 \
|
|
--bar-step 50 \
|
|
--redraw-thread \
|
|
\
|
|
--clock \
|
|
--force-clock \
|
|
--time-pos x+5:y+h-80 \
|
|
--time-color 880088ff \
|
|
--date-pos tx:ty+15 \
|
|
--date-color 990099ff \
|
|
--date-align 1 \
|
|
--time-align 1 \
|
|
--ringver-color 8800ff88 \
|
|
--ringwrong-color ff008888 \
|
|
--status-pos x+5:y+h-16 \
|
|
--verif-align 1 \
|
|
--wrong-align 1 \
|
|
--verif-color ffffffff \
|
|
--wrong-color ffffffff \
|
|
--modif-pos -50:-50
|