From 8cd552623e399607fd3b73de6874f6e0d6e1742a Mon Sep 17 00:00:00 2001 From: Nydragon Date: Mon, 26 Aug 2024 03:51:10 +0200 Subject: [PATCH] feat: add linux activation watermark --- src/LinuxActivation.qml | 55 +++++++++++++++++++++++++++++++++++++++++ src/shell.qml | 1 + 2 files changed, 56 insertions(+) create mode 100644 src/LinuxActivation.qml diff --git a/src/LinuxActivation.qml b/src/LinuxActivation.qml new file mode 100644 index 0000000..0d057c7 --- /dev/null +++ b/src/LinuxActivation.qml @@ -0,0 +1,55 @@ +// Credits go to outfoxxed: https://git.outfoxxed.me/outfoxxed/quickshell-examples/src/branch/master/activate_linux/shell.qml +import Quickshell +import QtQuick +import QtQuick.Layouts +import Quickshell.Wayland + +Variants { + // Create the panel once on each monitor. + model: Quickshell.screens + + PanelWindow { + id: w + + property var modelData + screen: modelData + + anchors { + right: true + bottom: true + } + + margins { + right: 50 + bottom: 50 + } + + width: content.width + height: content.height + + color: "transparent" + + // Give the window an empty click mask so all clicks pass through it. + mask: Region {} + + // Use the wlroots specific layer property to ensure it displays over + // fullscreen windows. + WlrLayershell.layer: WlrLayer.Overlay + + ColumnLayout { + id: content + + Text { + text: "Activate Linux" + color: "#50ffffff" + font.pointSize: 22 + } + + Text { + text: "Go to Settings to activate Linux" + color: "#50ffffff" + font.pointSize: 14 + } + } + } +} diff --git a/src/shell.qml b/src/shell.qml index 08830ec..5b28345 100644 --- a/src/shell.qml +++ b/src/shell.qml @@ -3,4 +3,5 @@ import Quickshell // for ShellRoot and PanelWindow ShellRoot { Bar {} + LinuxActivation {} }