feat: add linux activation watermark

This commit is contained in:
Nydragon 2024-08-26 03:51:10 +02:00
parent ee2b64fa99
commit 8cd552623e
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
2 changed files with 56 additions and 0 deletions

55
src/LinuxActivation.qml Normal file
View file

@ -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
}
}
}
}

View file

@ -3,4 +3,5 @@ import Quickshell
// for ShellRoot and PanelWindow // for ShellRoot and PanelWindow
ShellRoot { ShellRoot {
Bar {} Bar {}
LinuxActivation {}
} }