-
Notifications
You must be signed in to change notification settings - Fork 317
Open
Description
Right now, the default wifi interface is en0, however, it's not actually en0 on all devices, so commands like 'm wifi ls' simply returns the message "en0 is not a Wi-Fi interface."
As it sits, there's a few options:
- Run something like
networksetup -listallhardwareports | awk -F': ' '/Hardware Port: Wi-Fi/ { getline; print $2}'every single time. Ouch. - Tell people to populate the environment variable
_W_DEVICEappropriately in their shell config. Meh. - During installation, run the previously mentioned
networksetupcommand and then create a configuration script file inINSTALL_DIR/etc/m.conf(or somewhere better). So after installation that file would contain contain_W_DEVICE=en1(or whatever networksetup actually found). Then have m source that config file at runtime.
I'd be happy to submit a PR based on consensus of what would be the preferred method. Thoughts?
Thanks!
Metadata
Metadata
Assignees
Labels
No labels