From 85ae438fbc238fe56bcb1c10a12ec52365053cb6 Mon Sep 17 00:00:00 2001 From: Biswakalyan Bhuyan Date: Sat, 26 Feb 2022 20:31:12 +0530 Subject: dwmbar dotfiles --- 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-59-g8ed1b