From 0ff4ffc869e4c688894108e8cac4d6194af40595 Mon Sep 17 00:00:00 2001 From: Zacharias-Brohn Date: Mon, 23 Feb 2026 18:49:48 +0100 Subject: [PATCH 1/2] bluetooth toggle --- Modules/Notifications/Sidebar/Utils/Cards/Toggles.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Modules/Notifications/Sidebar/Utils/Cards/Toggles.qml b/Modules/Notifications/Sidebar/Utils/Cards/Toggles.qml index 5867fc2..d4d3821 100644 --- a/Modules/Notifications/Sidebar/Utils/Cards/Toggles.qml +++ b/Modules/Notifications/Sidebar/Utils/Cards/Toggles.qml @@ -65,10 +65,11 @@ CustomRect { } Toggle { - visible: Bluetooth.defaultAdapter?.enabled ?? false + visible: Bluetooth.defaultAdapter ?? false icon: Bluetooth.defaultAdapter?.enabled ? "bluetooth" : "bluetooth_disabled" checked: Bluetooth.defaultAdapter?.enabled ?? false onClicked: { + // console.log(Bluetooth.defaultAdapter) const adapter = Bluetooth.defaultAdapter if ( adapter ) adapter.enabled = !adapter.enabled; -- 2.47.3 From 14b6af90f94aa37f69de57f0f8ff34a2074a7c4f Mon Sep 17 00:00:00 2001 From: inorishio Date: Mon, 23 Feb 2026 18:56:07 +0100 Subject: [PATCH 2/2] stupid idea's from daivin --- Modules/Settings/Background.qml | 3 +-- Modules/Settings/Wrapper.qml | 5 ++--- plans/ideas.md | 4 ++++ 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/Modules/Settings/Background.qml b/Modules/Settings/Background.qml index a97b26b..3218ffe 100644 --- a/Modules/Settings/Background.qml +++ b/Modules/Settings/Background.qml @@ -1,7 +1,6 @@ import QtQuick import QtQuick.Shapes import qs.Components -import qs.Modules as Modules import qs.Config import qs.Helpers @@ -62,6 +61,6 @@ ShapePath { } Behavior on fillColor { - Modules.CAnim {} + CAnim {} } } diff --git a/Modules/Settings/Wrapper.qml b/Modules/Settings/Wrapper.qml index 8124a52..b8555c2 100644 --- a/Modules/Settings/Wrapper.qml +++ b/Modules/Settings/Wrapper.qml @@ -1,7 +1,6 @@ import Quickshell import QtQuick import qs.Components -import qs.Modules as Modules import qs.Config import qs.Helpers @@ -31,7 +30,7 @@ Item { from: "" to: "visible" - Modules.Anim { + Anim { target: root property: "implicitHeight" duration: MaterialEasing.expressiveEffectsTime @@ -43,7 +42,7 @@ Item { from: "visible" to: "" - Modules.Anim { + Anim { target: root property: "implicitHeight" easing.bezierCurve: MaterialEasing.expressiveEffects diff --git a/plans/ideas.md b/plans/ideas.md index 125f1c0..55e7dee 100644 --- a/plans/ideas.md +++ b/plans/ideas.md @@ -9,3 +9,7 @@ - [x] Maybe already possible; have keybinds to show certain menus. I do not want to touch my mouse to see notifications for example. Not everything in the bar needs this, but some would be good to have. - [x] Pressing ESC or some obvious button to close nc. - [x] Another branch for development, hold off big changes so that a working bar or if there are big config changes. + +# Stupid idea's from Daivin + +- [ ] An on screen pencil to draw on your screen :). -- 2.47.3