wmtools/i3bar_pingclock.nim

61 lines
1.2 KiB
Nim
Raw Normal View History

2022-02-12 14:20:21 +01:00
import std/os
import std/osproc
import std/re
import strutils
import i3bar_base
2022-02-12 16:36:19 +01:00
const host: string = "web.wilde.cloud"
2022-02-26 22:44:00 +01:00
const cmd: string = "ping -4 -c 1 " & host
2022-02-12 14:20:21 +01:00
const time_secs: int = 4
2022-02-12 16:36:19 +01:00
let ping_re = re(r"time=[0-9.]+")
2022-02-12 14:20:21 +01:00
2022-02-12 16:36:19 +01:00
proc get_ping(): float =
2022-02-12 14:20:21 +01:00
let cmdOut = execCmdEx(cmd)
let lines = splitLines(cmdOut.output)
let ping_line = lines[1]
let bounds = findBounds(ping_line, ping_re)
if bounds.first > 0:
let ping = ping_line[bounds.first+5..bounds.last]
2022-02-12 16:36:19 +01:00
return parseFloat(ping)
return -1
proc getObject(ping: float): i3barData =
var text = "🏓 " & $ping & " ms"
var col = foreground
if ping < 0:
text = "❌ No Pong"
col = yellow
else:
case ping:
of 0..100:
col = foreground
of 101..400:
col = yellow
of 401..1000:
col = alert
else:
col = red
2022-02-12 14:20:21 +01:00
let data = i3barData(
2022-02-12 16:36:19 +01:00
full_text: text,
color: col,
border: blue,
background: black
2022-02-12 14:20:21 +01:00
)
return data
proc main() =
2022-02-12 16:36:19 +01:00
var last_ping: float = 0
2022-02-12 14:20:21 +01:00
while true:
2022-02-12 16:36:19 +01:00
let ping = get_ping()
2022-02-12 16:19:43 +01:00
if ping != last_ping:
let data = getObject(ping)
outputJSON(data)
last_ping = ping
2022-02-12 14:20:21 +01:00
sleep(time_secs * 1000)
main()