Wifi#
⚠️ FIXME. ⚠️
This page is just a stub that needs to be completed. You can open a PR on the repo to add more content to the page.
Xochitl Network Settings#
QSettings settings("/home/root/.config/remarkable/xochitl.conf");
settings.sync();
settings.beginGroup("wifinetworks");
QMap<QString, QVariantMap> wifinetworks;
for(const QString& key : settings.allKeys()){
QVariantMap network = settings.value(key).toMap();
wifinetworks[key] = network;
}
settings.endGroup();