Build the Panama Hyprland desktop

This commit is contained in:
Gabriel Brown
2026-08-17 10:32:55 -04:00
parent 67033f2a31
commit 5248883e4b
190 changed files with 18554 additions and 34 deletions
@@ -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
}
}