diff options
Diffstat (limited to 'config/quickshell/qs-hyprview-unified/layouts/LayoutsManager.qml')
| -rw-r--r-- | config/quickshell/qs-hyprview-unified/layouts/LayoutsManager.qml | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/config/quickshell/qs-hyprview-unified/layouts/LayoutsManager.qml b/config/quickshell/qs-hyprview-unified/layouts/LayoutsManager.qml deleted file mode 100644 index 8db0672d..00000000 --- a/config/quickshell/qs-hyprview-unified/layouts/LayoutsManager.qml +++ /dev/null @@ -1,47 +0,0 @@ -pragma Singleton -import Quickshell -import "." - -Singleton { - id: root - - function doLayout( layoutAlgorithm, windowList, width, height) { - var doLayout = null - switch (layoutAlgorithm) { - case 'smartgrid': - doLayout = SmartGridLayout.doLayout - break - case 'justified': - doLayout = JustifiedLayout.doLayout - break - case 'bands': - doLayout = BandsLayout.doLayout - break - case 'masonry': - doLayout = MasonryLayout.doLayout - break - case 'hero': - doLayout = HeroLayout.doLayout - break - case 'spiral': - doLayout = SpiralLayout.doLayout - break - case 'satellite': - doLayout = SatelliteLayout.doLayout - break - case 'staggered': - doLayout = StarggeredLayout.doLayout - break - case 'columnar': - doLayout = ColumnarLayout.doLayout - break - case 'vortex': - doLayout = VortexLayout.doLayout - break - default: - doLayout = SmartGridLayout.doLayout - } - - return doLayout( windowList, width, height) - } -} |
