Read the statement by Michael Teeuw here.
-
A module to show MagicMirror’s IPv4 Network Address
[card:fewieden/MMM-ip]
-
Thanks Strawberry!
I just installed it, works fine.
Except, I can’t really place it at the real bottom right… 'cause I’m using bottom_bar , bottom_right is just on top of bottom_bar
-
@PointPubMedia in your case you can take this config
{ module: 'MMM-ip', position: 'bottom_bar' }
combined with
div.MMM-ip div.module-content { text-align: right; }
in ~/MagicMirror/css/custom.css
-
PERFECT
-
-
-
Small note which probably doesn’t apply to the majority here … if anyone at all … other than me that is: my secondary rpi runs IPv6 exclusively (it’s a test platform), so your module would not work as it is specifically looking for the IPv4 field.
Just something to think about …
-
Expanding on what I said above, it might be easier to have the module report both IPv4 and IPv6, then have config options to turn them off:
config: { displayIPv4: true, displayIPv6: false, },
-
@KirAsh4 done
-
based on @shashank’s request there is a new version, where you can define which network interface (wireless, ethernet or both) you want to display
WARNING: one config attribute changed it’s name for those who update
[card:fewieden/MMM-ip]