mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-05-05 12:02:06 -04:00
feat(DMS FrameMode): A New Connected Unified Surface & Animation Overhaul
- Introduces Standalone & Connected Modes - Updated Animations & Motion effects for both modes - Numerous QOL tweaks and updates throughout the system - Highly inspired to the OG Caelestia Shell / @Soramanew
This commit is contained in:
24
quickshell/Modules/Frame/Frame.qml
Normal file
24
quickshell/Modules/Frame/Frame.qml
Normal file
@@ -0,0 +1,24 @@
|
||||
pragma ComponentBehavior: Bound
|
||||
|
||||
import QtQuick
|
||||
import Quickshell
|
||||
import qs.Common
|
||||
|
||||
Variants {
|
||||
id: root
|
||||
|
||||
model: Quickshell.screens
|
||||
|
||||
delegate: Loader {
|
||||
id: instanceLoader
|
||||
|
||||
required property var modelData
|
||||
|
||||
active: SettingsData.frameEnabled && SettingsData.isScreenInPreferences(instanceLoader.modelData, SettingsData.frameScreenPreferences)
|
||||
asynchronous: false
|
||||
|
||||
sourceComponent: FrameInstance {
|
||||
screen: instanceLoader.modelData
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user