aboutsummaryrefslogtreecommitdiff
path: root/modules/system/quickshell/Squircle.qml
diff options
context:
space:
mode:
authorLeander Scherer <leander@schererleander.de>2026-05-18 21:48:24 +0200
committerLeander Scherer <leander@schererleander.de>2026-05-28 22:42:07 +0200
commit9a7cf1242d296dbdb9c03df48ab09054960295aa (patch)
treef1a2d5c77ef6bdb049c995afcc4c663c1ffd1373 /modules/system/quickshell/Squircle.qml
parent3ef8b4973bcae26445f99467d50ad75730d204b5 (diff)
feat(quickshell): basic bar, tray, notification
Diffstat (limited to 'modules/system/quickshell/Squircle.qml')
-rw-r--r--modules/system/quickshell/Squircle.qml12
1 files changed, 12 insertions, 0 deletions
diff --git a/modules/system/quickshell/Squircle.qml b/modules/system/quickshell/Squircle.qml
new file mode 100644
index 0000000..1d505c9
--- /dev/null
+++ b/modules/system/quickshell/Squircle.qml
@@ -0,0 +1,12 @@
+import QtQuick
+
+ShaderEffect {
+ id: root
+
+ property color fillColor: "transparent"
+ property color strokeColor: "transparent"
+ property real strokeWidth: 0
+ property real cornerRadius: 12
+
+ fragmentShader: "squircle.qsb"
+}