6 lines
151 B
Nix
6 lines
151 B
Nix
|
{ bash, config, curl, iconfont, ... }: ''
|
||
|
#!${bash}/bin/bash
|
||
|
WTTR=$(curl wttr.in/?format=1)
|
||
|
echo "<span font=\"Roboto Mono 11\">$WTTR</span>"
|
||
|
''
|