feat: barebones auth implementation

This commit is contained in:
talksik
2026-01-27 11:29:07 -08:00
parent 63f7dd3a06
commit 7a50bf12c9
16 changed files with 838 additions and 182 deletions
+10 -6
View File
@@ -1,18 +1,22 @@
#include <QApplication>
#include <QFile>
#include "src/MainWindow.h"
#include <QCoreApplication>
int main(int argc, char *argv[])
{
qDebug() << "hello world";
QCoreApplication::setOrganizationName("Flowy Labs, Inc");
QCoreApplication::setOrganizationDomain("flowylabs.ai");
QCoreApplication::setApplicationName("llink");
QApplication a(argc, argv);
// Load reMarkable e-ink stylesheet
QFile styleFile(":/styles/remarkable.qss");
if (styleFile.open(QFile::ReadOnly | QFile::Text)) {
a.setStyleSheet(styleFile.readAll());
styleFile.close();
}
// QFile styleFile(":/styles/remarkable.qss");
// if (styleFile.open(QFile::ReadOnly | QFile::Text)) {
// a.setStyleSheet(styleFile.readAll());
// styleFile.close();
// }
MainWindow w;
w.show();