-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnetstatus.go
56 lines (44 loc) · 872 Bytes
/
netstatus.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
package main
import (
"flag"
"fmt"
"os"
"time"
"github.com/justincampbell/anybar"
ping "github.com/sparrc/go-ping"
)
const defaultHost = "1.1.1.1"
const iconUp = "black"
const iconDown = "white"
var port int
var host string
func init() {
flag.Usage = usage
flag.IntVar(&port, "port", anybar.DefaultPort, "The port of an AnyBar instance")
flag.StringVar(&host, "host", defaultHost, "A host to ping")
flag.Parse()
}
func main() {
icon := iconUp
if !isUp() {
icon = iconDown
}
anybar.SendTo(icon, port)
}
func isUp() bool {
pinger, err := ping.NewPinger(host)
if err != nil {
panic(err)
}
pinger.Timeout, _ = time.ParseDuration("2s")
pinger.Run()
stats := pinger.Statistics()
if stats.PacketLoss == 100 {
return false
}
return true
}
func usage() {
fmt.Fprintf(os.Stderr, "usage: %s [options]\n", os.Args[0])
flag.PrintDefaults()
}