mirror of
https://github.com/librephoenix/nixos-config
synced 2025-01-19 15:15:52 +05:30
8 lines
243 B
Plaintext
8 lines
243 B
Plaintext
#!/bin/sh
|
|
while true
|
|
do
|
|
curl localhost:8384 &> /dev/null || echo '<fc=#{{base08-hex}}>❄ st off</fc>' > ~/.st-status;
|
|
curl localhost:8384 &> /dev/null && echo '<fc=#{{base0E-hex}}>↺ st on</fc>' > ~/.st-status;
|
|
sleep 5;
|
|
done
|