From d7e17be59086e23922d59daab6a40cc21cf12e53 Mon Sep 17 00:00:00 2001 From: Manuel Palenzuela Date: Mon, 21 Oct 2019 21:01:29 +0100 Subject: Added sunmoon module --- modules/sunmoon | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 modules/sunmoon (limited to 'modules/sunmoon') diff --git a/modules/sunmoon b/modules/sunmoon new file mode 100755 index 0000000..4bbc062 --- /dev/null +++ b/modules/sunmoon @@ -0,0 +1,18 @@ +#!/bin/bash + +# Outputs sun if its daytime and moon if its nighttime +# Requires the redshift package + +SUN_ICON='盛' +MOON_ICON='' + +get_sunmoon() +{ + if [[ $(redshift -p | grep "Period" | awk '{print $2}') == "Night" ]]; then + echo "$MOON_ICON" + else + echo "$SUN_ICON" + fi +} + +get_sunmoon -- cgit v1.2.3