summaryrefslogtreecommitdiff
path: root/modules/bar/components/Settings.qml
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2026-03-16 17:07:54 -0400
committerFreya Murphy <freya@freyacat.org>2026-03-16 17:07:54 -0400
commitbb6717666a669aa81cda28896ed292ca5af55ece (patch)
tree5f3c5fed20fd3bf8fe38e10d7e09b81558c64a79 /modules/bar/components/Settings.qml
parentadd date to clock (diff)
downloadcaelestia-shell-bb6717666a669aa81cda28896ed292ca5af55ece.tar.gz
caelestia-shell-bb6717666a669aa81cda28896ed292ca5af55ece.tar.bz2
caelestia-shell-bb6717666a669aa81cda28896ed292ca5af55ece.zip
change things
Diffstat (limited to 'modules/bar/components/Settings.qml')
-rw-r--r--modules/bar/components/Settings.qml41
1 files changed, 0 insertions, 41 deletions
diff --git a/modules/bar/components/Settings.qml b/modules/bar/components/Settings.qml
deleted file mode 100644
index 5d562ce..0000000
--- a/modules/bar/components/Settings.qml
+++ /dev/null
@@ -1,41 +0,0 @@
-import qs.components
-import qs.modules.controlcenter
-import qs.services
-import qs.config
-import Quickshell
-import QtQuick
-
-Item {
- id: root
-
- implicitWidth: icon.implicitHeight + Appearance.padding.small * 2
- implicitHeight: icon.implicitHeight
-
- StateLayer {
- // Cursed workaround to make the height larger than the parent
- anchors.fill: undefined
- anchors.centerIn: parent
- implicitWidth: implicitHeight
- implicitHeight: icon.implicitHeight + Appearance.padding.small * 2
-
- radius: Appearance.rounding.full
-
- function onClicked(): void {
- WindowFactory.create(null, {
- active: "network"
- });
- }
- }
-
- MaterialIcon {
- id: icon
-
- anchors.centerIn: parent
- anchors.horizontalCenterOffset: -1
-
- text: "settings"
- color: Colours.palette.m3onSurface
- font.bold: true
- font.pointSize: Appearance.font.size.normal
- }
-}