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