diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2023-02-08 16:54:50 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2023-02-08 16:56:10 +0100 |
commit | 87b0ff210e15c2fe41469b663fbe71dd37e770a9 (patch) | |
tree | e412a6cf4f574327428cd3416e4b63cd638d188d | |
parent | Hosts: Add telegram package (diff) | |
download | nixos-config-87b0ff210e15c2fe41469b663fbe71dd37e770a9.tar.gz nixos-config-87b0ff210e15c2fe41469b663fbe71dd37e770a9.tar.bz2 nixos-config-87b0ff210e15c2fe41469b663fbe71dd37e770a9.zip |
Dotfiles: Generalise weather location in waybar
Previously, "pdx" was wrongfully chosen as the weather location (CtrlC-CtrlV). This patch doesnt specifiy any location so the weather info is pulled from geolocating the IP address.
-rw-r--r-- | dotfiles/waybar/config | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/waybar/config b/dotfiles/waybar/config index b9464fc..9d31fb5 100644 --- a/dotfiles/waybar/config +++ b/dotfiles/waybar/config @@ -42,7 +42,7 @@ }, "custom/weather": { "format": "{}", - "exec": "curl \"wttr.in/pdx?format=%c%t\" | sed \"s/+//g\"", + "exec": "curl \"wttr.in/?format=%c%t\" | sed \"s/+//g\"", "interval": 6000 }, "sway/mode": { |