Build the Panama Hyprland desktop
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
import Quickshell
|
||||
import QtQuick
|
||||
import qs.config
|
||||
import qs.services
|
||||
|
||||
FloatingWindow {
|
||||
id: root
|
||||
|
||||
title: "Panama Settings"
|
||||
visible: ShellState.settingsOpen
|
||||
implicitWidth: 1120
|
||||
implicitHeight: 760
|
||||
minimumSize: Qt.size(900, 620)
|
||||
color: Theme.alpha(Theme.bg, 0)
|
||||
|
||||
onVisibleChanged: {
|
||||
if (visible) {
|
||||
SystemSettings.refresh();
|
||||
} else if (ShellState.settingsOpen) {
|
||||
// Keep Super+I deterministic after compositor close/Alt+F4.
|
||||
ShellState.closeSettings();
|
||||
}
|
||||
}
|
||||
|
||||
SettingsShell {
|
||||
anchors.fill: parent
|
||||
hostWindow: root
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user