mirror of
https://github.com/outbackdingo/home-ops.git
synced 2026-01-27 10:19:11 +00:00
11 lines
285 B
Bash
Executable File
11 lines
285 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
while true; do
|
|
figlet -f slant "media" | lolcat
|
|
kubecolor get po -n media; sleep 5; clear;
|
|
figlet -f slant "home" | lolcat
|
|
kubecolor get po -n home; sleep 5; clear;
|
|
figlet -f slant "nodes" | lolcat
|
|
kubecolor get nodes; sleep 5; clear;
|
|
done
|