Files
2026-08-04 14:20:23 -07:00

48 lines
865 B
Go

package app
import (
"finally-a-monolithic-linux-hw-monitor/app/cpu"
"finally-a-monolithic-linux-hw-monitor/app/cpu/proc"
"fmt"
"os"
"os/signal"
"strings"
"syscall"
"time"
)
func Run() {
// Clear terminal screen and hide cursor
fmt.Print("\033[2J\033[?25l")
// Ensure cursor is restored when exiting (Ctrl+C / SIGTERM)
cleanupChannel := make(chan os.Signal, 1)
signal.Notify(cleanupChannel, os.Interrupt, syscall.SIGTERM)
go func() {
<-cleanupChannel
// Restore cursor and move below output
fmt.Print("\033[?25h\n")
os.Exit(0)
}()
proc, err := proc.GetProc()
ticker := time.NewTicker(1 * time.Second)
defer ticker.Stop()
for {
console := &strings.Builder{}
if err != nil {
return
}
cpu.RenderCPU(console, &proc)
fmt.Fprint(console, "\nPress Ctrl+C to exit.\033[K\n")
fmt.Print(console.String())
<-ticker.C
}
}