aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/archupdates4
-rw-r--r--modules/date4
-rw-r--r--modules/time4
-rw-r--r--modules/weather41
4 files changed, 47 insertions, 6 deletions
diff --git a/modules/archupdates b/modules/archupdates
index da9288a..edc7a41 100644
--- a/modules/archupdates
+++ b/modules/archupdates
@@ -5,7 +5,7 @@
PREFIX=' Updates:'
-updates()
+get_updates()
{
if ! updates_arch=$(checkupdates 2> /dev/null | wc -l ); then
updates_arch=0
@@ -20,4 +20,4 @@ updates()
echo "$PREFIX $updates"
}
-updates
+get_updates
diff --git a/modules/date b/modules/date
index c6ddc38..cc5ccc2 100644
--- a/modules/date
+++ b/modules/date
@@ -4,9 +4,9 @@
PREFIX=''
-date()
+get_date()
{
echo "$PREFIX $(date '+%d-%m-%y (%a)')"
}
-date
+get_date
diff --git a/modules/time b/modules/time
index 2551229..dfd2400 100644
--- a/modules/time
+++ b/modules/time
@@ -4,9 +4,9 @@
PREFIX=' '
-time()
+get_time()
{
echo "$PREFIX$(date '+%H:%M')"
}
-time
+get_time
diff --git a/modules/weather b/modules/weather
new file mode 100644
index 0000000..188e431
--- /dev/null
+++ b/modules/weather
@@ -0,0 +1,41 @@
+#!/bin/bash
+
+# Prints out the weather at your approximate location
+
+get_weather()
+{
+ LOCATION=$(geolocate)
+ LANG="en"
+ UNITS="Metric"
+ API_KEY="756edce7e9d4c385ef9499a53492678c"
+
+ LOCATION_FORMATTED_2=$(echo $LOCATION | cut -d ':' -f2)
+ LOCATION_FORMATTED_1=$(echo $LOCATION | cut -d ':' -f1)
+
+ OUTPUT=$(curl -s "http://api.openweathermap.org/data/2.5/weather?lat=$LOCATION_FORMATTED_1&lon=$LOCATION_FORMATTED_2&lang=$LANG&appid=$API_KEY&units=$UNITS")
+ STATUS=$(echo $OUTPUT | jq '.weather' | tr '[' ' ' | tr ']' ' ' | jq '.main' | sed 's/"//g')
+ TEMP=$(echo $OUTPUT | jq '.main' | jq '.temp' | xargs printf "%.*f\n" 0)
+
+ case $STATUS in
+ "Clear" )
+ echo "";;
+ "Clouds" )
+ echo "摒";;
+ "Rain" )
+ echo "歹";;
+ "Thunderstorm" )
+ echo "朗";;
+ "Snow" )
+ echo "流";;
+ "Mist" )
+ echo "敖";;
+ * )
+ echo "?";;
+ esac
+
+ echo "$STATUS, "
+ echo "$TEMP°C"
+}
+
+get_weather
+