mirror of
https://github.com/elenapan/dotfiles.git
synced 2026-01-15 02:58:00 +08:00
10 lines
165 B
Bash
Executable file
10 lines
165 B
Bash
Executable file
#!/usr/bin/env bash
|
|
eww="$HOME/.config/eww/scripts"
|
|
update() {
|
|
$eww/networks.sh scan
|
|
}
|
|
|
|
while true; do
|
|
update
|
|
"$eww/safe-sleep" 5m with-interval 10
|
|
done
|