Update screens, refactor polybar modules, scripts

This commit is contained in:
2020-03-24 12:49:32 -04:00
parent e7fb3e2dac
commit 3c95f5cc97
6 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,7 @@ if [ -n "$current" ] && [ -n "$forecast" ]; then
# Format of sunset/rise display and icons
if [ "$sun_rise" -gt "$now" ]; then
daytime="  $(get_duration "$((sun_rise-now))")" # Sun rise
daytime="  $(get_duration "$((sun_rise-now))")" # Sun rise
elif [ "$sun_set" -gt "$now" ]; then
daytime="  $(get_duration "$((sun_set-now))")" # Sun set
else