made ip module only show one address - fixed
parent
7328523865
commit
9f89f4ae28
|
|
@ -89,7 +89,7 @@
|
|||
|
||||
|
||||
(defpoll IP :interval "20s"
|
||||
"hostname -i | tr ' ' '\n' | head -n1 | tail -n1")
|
||||
"scripts/ip")
|
||||
|
||||
(defpoll volume :interval "0.5s"
|
||||
"scripts/getvol")
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
hostname -i | tr ' ' '\n' | head -n1 | tail -n1
|
||||
|
||||
Loading…
Reference in New Issue