mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 06:13:09 +00:00
14 lines
No EOL
293 B
C++
14 lines
No EOL
293 B
C++
// SPDX-FileCopyrightText: 2023 Devin Lin <devin@kde.org>
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "initialstartutil.h"
|
|
|
|
InitialStartUtil::InitialStartUtil(QObject *parent)
|
|
: QObject{parent}
|
|
{
|
|
}
|
|
|
|
QString InitialStartUtil::distroName() const
|
|
{
|
|
return m_osrelease.name();
|
|
} |