diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2026-07-19 12:22:20 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2026-07-19 12:22:20 +0530 |
| commit | 0a5559b9d188796022d0c0f4e0601fb491e26bc5 (patch) | |
| tree | 077f3d7bf112cd39396b06d06c06fcdcc8950a39 /quickshell/items | |
| parent | 4706f2c86a9aa45876facae5358ca38a3026fef3 (diff) | |
implemented a simple dnd system
which doubles as a privacy filter for screen recordings
Diffstat (limited to 'quickshell/items')
| -rw-r--r-- | quickshell/items/LowEnergy.qml | 1 | ||||
| -rw-r--r-- | quickshell/items/Radio.qml | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/quickshell/items/LowEnergy.qml b/quickshell/items/LowEnergy.qml index 881ee84..bfd33ab 100644 --- a/quickshell/items/LowEnergy.qml +++ b/quickshell/items/LowEnergy.qml @@ -3,6 +3,7 @@ import QtQuick.Layouts RowLayout { spacing: 0 + opacity: !shellRoot.dnd Text { text: " Low Energy:" color: shellRoot.white diff --git a/quickshell/items/Radio.qml b/quickshell/items/Radio.qml index 2e33dec..77e542e 100644 --- a/quickshell/items/Radio.qml +++ b/quickshell/items/Radio.qml @@ -3,6 +3,8 @@ import QtQuick.Layouts RowLayout { spacing: 0 + opacity: !shellRoot.dnd + Text { text: " Radio:" color: shellRoot.white |
