core: set application name to avoid bin name fallback

This commit is contained in:
outfoxxed 2024-08-29 14:43:25 -07:00
parent 77c5a2d569
commit 60349f1894
Signed by: outfoxxed
GPG key ID: 4C88A185FB89301E

View file

@ -53,6 +53,8 @@ struct CommandInfo {
};
void processCommand(int argc, char** argv, CommandInfo& info) {
QCoreApplication::setApplicationName("quickshell");
auto app = CLI::App("");
class QStringOption {