From 28f36128398a4372f217a9fef7f218291c80b6dc Mon Sep 17 00:00:00 2001 From: albert Date: Fri, 14 Jun 2024 10:45:22 +0900 Subject: [PATCH] Testing --- nixos/common/desktops/plasma6/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/common/desktops/plasma6/default.nix b/nixos/common/desktops/plasma6/default.nix index 0b9e4ebc..d3f2c960 100644 --- a/nixos/common/desktops/plasma6/default.nix +++ b/nixos/common/desktops/plasma6/default.nix @@ -36,8 +36,8 @@ path = [ pkgs.curl pkgs.fx ]; script = '' echo "Activating get-theme-times systemd service" - curl -s "https://api.sunrise-sunset.org/json?lat=35.680&lng=135.03" | fx .results.sunrise > /tmp/wttr.sunrise - curl -s "https://api.sunrise-sunset.org/json?lat=35.680&lng=135.03" | fx .results.sunset > /tmp/wttr.sunset + curl -s "https://api.sunrise-sunset.org/json?lat=35.680&lng=135.03&tzid=Asia/Tokyo" | fx .results.sunrise > /tmp/wttr.sunrise + curl -s "https://api.sunrise-sunset.org/json?lat=35.680&lng=135.03&tzid=Asia/Tokyo" | fx .results.sunset > /tmp/wttr.sunset echo "get-theme-times - complete" ''; after = [ "networking-online.target" ];