Tweak statuses
This commit is contained in:
parent
12f0a08f2c
commit
cbe0a56aef
2 changed files with 4 additions and 4 deletions
4
main.go
4
main.go
|
@ -313,7 +313,7 @@ func main() {
|
||||||
ctx, setStatus, done := status.AddSimpleItem(ctx, "EtherTalk inbound")
|
ctx, setStatus, done := status.AddSimpleItem(ctx, "EtherTalk inbound")
|
||||||
defer done()
|
defer done()
|
||||||
|
|
||||||
setStatus("Running")
|
setStatus(fmt.Sprintf("Listening on %s", cfg.EtherTalk.Device))
|
||||||
|
|
||||||
for {
|
for {
|
||||||
if ctx.Err() != nil {
|
if ctx.Err() != nil {
|
||||||
|
@ -440,7 +440,7 @@ func main() {
|
||||||
|
|
||||||
ctx, setStatus, done := status.AddSimpleItem(ctx, "AURP inbound")
|
ctx, setStatus, done := status.AddSimpleItem(ctx, "AURP inbound")
|
||||||
defer done()
|
defer done()
|
||||||
setStatus("Running")
|
setStatus(fmt.Sprintf("Listening on UDP port %d", cfg.ListenPort))
|
||||||
|
|
||||||
for {
|
for {
|
||||||
if ctx.Err() != nil {
|
if ctx.Err() != nil {
|
||||||
|
|
|
@ -22,13 +22,13 @@
|
||||||
text-align: center;
|
text-align: center;
|
||||||
font-size: 120%;
|
font-size: 120%;
|
||||||
background: #eef;
|
background: #eef;
|
||||||
padding: 4px;
|
padding: 4px 0;
|
||||||
}
|
}
|
||||||
summary {
|
summary {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
font-size: 120%;
|
font-size: 120%;
|
||||||
background: #eef;
|
background: #eef;
|
||||||
padding: 0.2em;
|
padding: 0.2em 0;
|
||||||
border: 1px #eef solid;
|
border: 1px #eef solid;
|
||||||
}
|
}
|
||||||
details {
|
details {
|
||||||
|
|
Loading…
Reference in a new issue