summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/.local/bin/statusbar12
-rw-r--r--zathura/.config/zathura/zathurarc4
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() {
14} 14}
15 15
16dte() { 16dte() {
17 dte="$(date +"%A, %B %d")" 17 dte=$(date +"%A, %B %d")
18 time="$(date +"%l:%M %p")" 18 echo -e "+@fg=1;date+@fg=0; $dte "
19 echo -e "+@fg=1;date+@fg=0; $dte +@fg=1;time+@fg=0; $time" 19}
20
21tie() {
22 tme=$(date +"%I:%M %p")
23 echo -e "+@fg=1;time+@fg=0; $tme "
20} 24}
21 25
22while :; do 26while :; do
23 echo "$(vol) $(bat) $(dte)" 27 echo "$(vol) $(bat) $(tie) $(dte)"
24 sleep 2 28 sleep 2
25done 29done
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
14set recolor "false" # Use our theme colors (<C-r> for the original document colors) 14set recolor "false" # Use our theme colors (<C-r> for the original document colors)
15 15
16# [colors] 16# [colors]
17set default-bg "#09090d" 17set default-bg "#000000"
18set default-fg "#a3a6ab" 18set default-fg "#a3a6ab"
19set statusbar-bg "#09090d" 19set statusbar-bg "#000000"
20set statusbar-fg "#a3a6ab" 20set statusbar-fg "#a3a6ab"
21set inputbar-bg "#09090d" 21set inputbar-bg "#09090d"
22set inputbar-fg "#a3a6ab" 22set inputbar-fg "#a3a6ab"