2021-02-15 20:53:16 -05:00
|
|
|
#! /bin/bash
|
|
|
|
|
|
|
|
## lock the screen using i3lock
|
|
|
|
|
|
|
|
# WORKAROUND make the date show up in the right place on 2+ monitor setups
|
|
|
|
# I want it to only show up on the primary screen, so use xrandr to get the
|
|
|
|
# dimensions and position of the primary monitor and calculate the date position
|
|
|
|
# from that
|
|
|
|
geometry=$(xrandr | sed -n 's/^.*primary \([0-9]*\)x[0-9]*+\([0-9]\)*+[0-9]* .*/\1 \2/p')
|
|
|
|
width=$(echo "$geometry" | cut -f1 -d" ")
|
|
|
|
xpos=$(echo "$geometry" | cut -f2 -d" ")
|
|
|
|
xoffset=$(("$xpos" + "$width" / 2))
|
|
|
|
datepos="$xoffset:600"
|
|
|
|
|
|
|
|
i3lock --color=000000 \
|
|
|
|
--pass-media-keys \
|
2021-06-10 22:57:31 -04:00
|
|
|
--nofork \
|
|
|
|
--ignore-empty-password \
|
|
|
|
--screen=0 \
|
|
|
|
--indicator \
|
|
|
|
--inside-color=00000055 \
|
|
|
|
--insidever-color=00000055 \
|
|
|
|
--insidewrong-color=00000055 \
|
|
|
|
--ring-color=555555ff \
|
|
|
|
--ringwrong-color=ff3333ff \
|
|
|
|
--ringver-color=99ceffff \
|
|
|
|
--keyhl-color=99ceffff \
|
|
|
|
--bshl-color=9523ffff \
|
|
|
|
--line-color=00000000 \
|
|
|
|
--separator-color=00000000 \
|
|
|
|
--clock \
|
|
|
|
--verif-color=99ceffff \
|
|
|
|
--wrong-color=ff8282ff \
|
|
|
|
--time-color=ffffffff \
|
|
|
|
--time-size=72 \
|
|
|
|
--time-str="%H:%M" \
|
|
|
|
--date-color=ffffffff \
|
|
|
|
--date-size=42 \
|
|
|
|
--date-str="%b %d, %Y" \
|
2021-02-15 20:53:16 -05:00
|
|
|
--date-align 0 \
|
2021-06-10 22:57:31 -04:00
|
|
|
--date-pos="$datepos" \
|
|
|
|
--wrong-size=72 \
|
|
|
|
--verif-size=72 \
|
|
|
|
--radius=300 \
|
|
|
|
--ring-width=25
|