From 46a02ee1d9885fc3c44889742cc512486a0a6a90 Mon Sep 17 00:00:00 2001 From: Shubham Saini Date: Wed, 22 Apr 2020 19:38:11 +0530 Subject: massive changes --- bin/.local/bin/statusbar | 12 ++++++++---- zathura/.config/zathura/zathurarc | 4 ++-- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/bin/.local/bin/statusbar b/bin/.local/bin/statusbar index 020429e..31f9be0 100755 --- a/bin/.local/bin/statusbar +++ b/bin/.local/bin/statusbar @@ -14,12 +14,16 @@ bat() { } dte() { - dte="$(date +"%A, %B %d")" - time="$(date +"%l:%M %p")" - echo -e "+@fg=1;date+@fg=0; $dte +@fg=1;time+@fg=0; $time" + dte=$(date +"%A, %B %d") + echo -e "+@fg=1;date+@fg=0; $dte " +} + +tie() { + tme=$(date +"%I:%M %p") + echo -e "+@fg=1;time+@fg=0; $tme " } while :; do - echo "$(vol) $(bat) $(dte)" + echo "$(vol) $(bat) $(tie) $(dte)" sleep 2 done diff --git a/zathura/.config/zathura/zathurarc b/zathura/.config/zathura/zathurarc index 2e08e7a..058640a 100644 --- a/zathura/.config/zathura/zathurarc +++ b/zathura/.config/zathura/zathurarc @@ -14,9 +14,9 @@ set scroll-step "120" # Increase the scroll distance when using j/k set recolor "false" # Use our theme colors ( for the original document colors) # [colors] -set default-bg "#09090d" +set default-bg "#000000" set default-fg "#a3a6ab" -set statusbar-bg "#09090d" +set statusbar-bg "#000000" set statusbar-fg "#a3a6ab" set inputbar-bg "#09090d" set inputbar-fg "#a3a6ab" -- cgit v1.2.3