mirror of
https://invent.kde.org/marcoa/shift-shell.git
synced 2026-04-26 14:23:09 +00:00
7 lines
362 B
JavaScript
7 lines
362 B
JavaScript
// SPDX-FileCopyrightText: 2024 Devin Lin <devin@kde.org>
|
|
// SPDX-License-Identifier: LGPL-2.0-or-later
|
|
|
|
const panel = new Panel("org.kde.plasma.mobile.panel");
|
|
panel.location = "top";
|
|
panel.addWidget("org.kde.plasma.notifications");
|
|
panel.height = 1.25 * gridUnit; // HACK: supposed to be gridUnit + smallSpacing, but it doesn't seem to give the correct number
|