From 36fd84f2f249f00acae5ceba1be8d23bf4202632 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Thu, 7 Apr 2022 21:44:20 +0100 Subject: [PATCH] better weather icons --- nixos/i3/i3status-rust.nix | 1 + nixos/i3/openweathermap-fullfeatured.sh | 36 ++++++++++++------------- 2 files changed, 19 insertions(+), 18 deletions(-) diff --git a/nixos/i3/i3status-rust.nix b/nixos/i3/i3status-rust.nix index 72b9bed2..2f78deed 100644 --- a/nixos/i3/i3status-rust.nix +++ b/nixos/i3/i3status-rust.nix @@ -10,6 +10,7 @@ { block = "custom"; command = ../i3/openweathermap-fullfeatured.sh; + interval = 600; } { block = "load"; diff --git a/nixos/i3/openweathermap-fullfeatured.sh b/nixos/i3/openweathermap-fullfeatured.sh index fb5dbb56..383eddc1 100755 --- a/nixos/i3/openweathermap-fullfeatured.sh +++ b/nixos/i3/openweathermap-fullfeatured.sh @@ -18,24 +18,24 @@ UNAME=`which uname` get_icon() { case $1 in - 01d) icon="";; - 01n) icon="";; - 02d) icon="";; - 02n) icon="";; - 03d) icon="";; - 03n) icon="";; - 04d) icon="";; - 04n) icon="";; - 09d) icon="";; - 09n) icon="";; - 10d) icon="";; - 10n) icon="";; - 11d) icon="";; - 11n) icon="";; - 13d) icon="";; - 13n) icon="";; - 50d) icon="";; - 50n) icon="";; + 01d) icon="";; + 01n) icon="";; + 02d) icon="";; + 02n) icon="";; + 03d) icon="";; + 03n) icon="";; + 04d) icon="";; + 04n) icon="";; + 09d) icon="";; + 09n) icon="";; + 10d) icon="";; + 10n) icon="";; + 11d) icon="";; + 11n) icon="";; + 13d) icon="";; + 13n) icon="";; + 50d) icon="";; + 50n) icon="";; *) icon=""; esac