1
0
Fork 0

fixed lockscreen color in database

This commit is contained in:
Massaki Archambault 2018-10-31 09:08:42 -04:00
parent 675f8d9c56
commit a5deb69788
2 changed files with 10 additions and 5 deletions

View File

@ -83,6 +83,11 @@ i3wm*active: #f0544c
! lock ! lock
lock.font: F_SANS lock.font: F_SANS
lock.color.foreground: C_FG_ENABLED
lock.color.background: C_BG_ENABLED
lock.color.primary: C_PRIMARY
lock.color.secondary: C_SECONDARY
lock.color.error: C_ERROR
! xterm ! xterm
xterm.termName: xterm-256color xterm.termName: xterm-256color

View File

@ -3,7 +3,7 @@
unset LD_PRELOAD unset LD_PRELOAD
query_color() { query_color() {
xrdb -query | grep -m 1 "color.$1" | sed -E 's/^.+:\s*#?//g' xrdb -query | grep -m 1 "lock.color.$1" | sed -E 's/^.+:\s*#?//g'
} }
query_prop() { query_prop() {
@ -13,15 +13,15 @@ query_prop() {
# flush gpg-agent cache # flush gpg-agent cache
echo RELOADAGENT | gpg-connect-agent echo RELOADAGENT | gpg-connect-agent
exec i3lock --image="$HOME/.local/share/wallpaper.jpg" --indicator --force-clock \ exec i3lock --image="$HOME/.local/share/wallpaper" --indicator --force-clock --color "$(query_color background)" \
--veriftext="" --wrongtext="" --noinputtext="" --layoutcolor="00000000" --insidevercolor="00000000" --insidewrongcolor="00000000" --insidecolor="00000000" \ --veriftext="" --wrongtext="" --noinputtext="" --layoutcolor="00000000" --insidevercolor="00000000" --insidewrongcolor="00000000" --insidecolor="00000000" \
--ringvercolor="$(query_color primary)FF" --ringwrongcolor="$(query_color error)FF" --ringcolor="$(query_color fg-enabled)FF" \ --ringvercolor="$(query_color primary)FF" --ringwrongcolor="$(query_color error)FF" --ringcolor="$(query_color foreground)FF" \
--keyhlcolor="$(query_color primary)FF" --bshlcolor="$(query_color secondary)FF" \ --keyhlcolor="$(query_color primary)FF" --bshlcolor="$(query_color secondary)FF" \
--modifpos="w:h" \ --modifpos="w:h" \
--separatorcolor="00000000" --line-uses-inside \ --separatorcolor="00000000" --line-uses-inside \
--radius=50 --indpos="x+100:h-150" \ --radius=50 --indpos="x+100:h-150" \
--timecolor="00000000" --time-font="$(query_prop font)" --timecolor="$(query_color fg-enabled)FF" --timesize=72 \ --timecolor="00000000" --time-font="$(query_prop font)" --timecolor="$(query_color foreground)FF" --timesize=72 \
--time-align=1 --timepos="ix+r+20:iy+50" --timestr="%H:%M" \ --time-align=1 --timepos="ix+r+20:iy+50" --timestr="%H:%M" \
--date-font="$(query_prop font)" --datecolor="$(query_color fg-enabled)FF" --datesize=48 \ --date-font="$(query_prop font)" --datecolor="$(query_color foreground)FF" --datesize=48 \
--date-align=1 --datepos="tx:ty-70" --datestr="%A, %b %e" --date-align=1 --datepos="tx:ty-70" --datestr="%A, %b %e"