mirror of https://github.com/artizirk/dotfiles
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
365 B
17 lines
365 B
#!/bin/bash |
|
# Uses forked swaylock https://github.com/mortie/swaylock-effects |
|
bg=$1 |
|
exec swaylock \ |
|
--clock \ |
|
--datestr "%Y-%m-%d" \ |
|
--indicator \ |
|
--scaling tile \ |
|
--hide-keyboard-layout \ |
|
--font "Terminus" \ |
|
--font-size 28 \ |
|
--text-color ffffff \ |
|
--inside-color 435366 \ |
|
--separator-color 435366 \ |
|
--ring-color 435366 \ |
|
--line-uses-ring \ |
|
--image $bg
|
|
|