forked from Hithomelabs/dotfiles
36 lines
919 B
Bash
Executable File
36 lines
919 B
Bash
Executable File
#!/bin/sh
|
|
# Catppuccin Mocha screen locker (i3lock-color)
|
|
|
|
exec ~/.local/bin/i3lock-color \
|
|
--nofork \
|
|
--ignore-empty-password \
|
|
--color=1e1e2e \
|
|
--indicator \
|
|
--clock \
|
|
--time-str="%H:%M" \
|
|
--date-str="%A, %d %B %Y" \
|
|
--time-font="FiraCode Nerd Font" \
|
|
--date-font="FiraCode Nerd Font" \
|
|
--time-size=76 \
|
|
--date-size=22 \
|
|
--time-color=89b4fa \
|
|
--date-color=cba6f7 \
|
|
--timeoutline-color=00000000 \
|
|
--timeoutline-width=0 \
|
|
--ring-color=45475a \
|
|
--ringver-color=89b4fa \
|
|
--ringwrong-color=f38ba8 \
|
|
--inside-color=1e1e2e \
|
|
--insidever-color=1e1e2e \
|
|
--insidewrong-color=1e1e2e \
|
|
--line-color=00000000 \
|
|
--line-uses-inside \
|
|
--separator-color=6c7086 \
|
|
--keyhl-color=a6e3a1 \
|
|
--bshl-color=f38ba8 \
|
|
--verif-color=00000000 \
|
|
--wrong-color=f38ba8 \
|
|
--layout-color=cdd6f4 \
|
|
--radius=140 \
|
|
--ring-width=8
|