diff options
author | Raymond Li <hi@raymond.li> | 2021-05-28 16:21:50 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-28 22:21:50 +0200 |
commit | bbf8840fd863e9e94805424c45447d2d89f2aa98 (patch) | |
tree | e0ae52c43d9758f0eb5889d19cc6f0f76645a541 /betterlockscreen | |
parent | ee1a64375edea0bd065ccf405c8911bec7e72d11 (diff) |
Fix i3lock-color args for new standardized version (#220)
* Update required i3lock-color version
* Fix i3lock-color args for new standardized version
Diffstat (limited to 'betterlockscreen')
-rwxr-xr-x | betterlockscreen | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/betterlockscreen b/betterlockscreen index 6dd06e0..57bfc3b 100755 --- a/betterlockscreen +++ b/betterlockscreen @@ -90,17 +90,17 @@ lock() { i3lock \ -c 00000000 \ -t -i "$1" \ - --timepos='x+110:h-70' \ - --datepos='x+43:h-45' \ - --clock --date-align 1 --datestr "$locktext" --timestr "$time_format" \ - --insidecolor=$insidecolor --ringcolor=$ringcolor --line-uses-inside \ - --keyhlcolor=$keyhlcolor --bshlcolor=$bshlcolor --separatorcolor=$separatorcolor \ - --insidevercolor=$insidevercolor --insidewrongcolor=$insidewrongcolor \ - --ringvercolor=$ringvercolor --ringwrongcolor=$ringwrongcolor --indpos='x+280:h-70' \ - --radius=20 --ring-width=4 --veriftext='' --wrongtext='' \ - --verifcolor="$verifcolor" --timecolor="$timecolor" --datecolor="$datecolor" \ + --time-pos='x+110:h-70' \ + --date-pos='x+43:h-45' \ + --clock --date-align 1 --date-str "$locktext" --time-str "$time_format" \ + --inside-color=$insidecolor --ring-color=$ringcolor --line-uses-inside \ + --keyhl-color=$keyhlcolor --bshl-color=$bshlcolor --separator-color=$separatorcolor \ + --insidever-color=$insidevercolor --insidewrong-color=$insidewrongcolor \ + --ringver-color=$ringvercolor --ringwrong-color=$ringwrongcolor --ind-pos='x+280:h-70' \ + --radius=20 --ring-width=4 --verif-text='' --wrong-text='' \ + --verif-color="$verifcolor" --time-color="$timecolor" --date-color="$datecolor" \ --time-font="$font" --date-font="$font" --layout-font="$font" --verif-font="$font" --wrong-font="$font" \ - --noinputtext='' --force-clock --pass-media-keys "$lockargs" + --noinput-text='' --force-clock --pass-media-keys "$lockargs" } |