This is a projection, not a development branch. The tree above was constructed from the internal source named below under a manifest that decides which paths may leave, then scanned as a whole tree rather than as a series of patches, and only then published. Public history starts here because the history before it was not admissible, and neither was the tree. What used to stand in this repository included a rescue copy of another machine, a directory of phone handoffs, deployment wired to one house, and a submodule pointing at a forge no stranger can reach. None of that was ever the product. It stays in the private forge, which is allowed to hold the whole working organism, and this is what was deliberately sent out instead. Three mechanisms produced this tree, in decreasing order of trust. A top-level path the manifest does not name never arrives at all, which is the one that catches directories nobody has thought of yet. Named internal files inside admitted roots are dropped. A short, reviewed table replaces deployment defaults that a public build must not carry -- an endpoint aimed at one LAN, a VPN profile belonging to one phone, packaging built from one checkout path. Everything after this commit is an ordinary publication with the same three trailers, so a force push stops being routine and starts meaning that something deliberate happened. The trailers bind the projection to its source without pretending the public SHA is the private one: same lineage, different tree, and the record says so. Source-Sha: 8f27b1e76a8fef560a336aba18e6990713ff1047 Policy-Sha: 6b261d2f3e6e1fb19874846ba4bb1dfe15565d25b8618c1c1afba0419c101d27 Tree-Digest: 18ec3563c5e5ef9a414993a9f6734b251ff9ed3cd56eebdd6cac01e45c6e3067
291 lines
9.6 KiB
QML
291 lines
9.6 KiB
QML
import qs
|
|
import qs.services
|
|
import qs.modules.common
|
|
import qs.modules.common.widgets
|
|
import QtQuick
|
|
import Quickshell.Io
|
|
import Quickshell
|
|
import Quickshell.Wayland
|
|
import Quickshell.Hyprland
|
|
|
|
Scope { // Scope
|
|
id: root
|
|
property bool detach: false
|
|
property bool pin: false
|
|
property Component contentComponent: SidebarLeftContent {}
|
|
property Item sidebarContent
|
|
|
|
function toggleDetach() {
|
|
root.detach = !root.detach;
|
|
}
|
|
|
|
Process { // Dodge cursor away, pin, move cursor back
|
|
id: pinWithFunnyHyprlandWorkaroundProc
|
|
property var hook: null
|
|
property int cursorX;
|
|
property int cursorY;
|
|
function doIt() {
|
|
command = ["hyprctl", "cursorpos"]
|
|
hook = (output) => {
|
|
cursorX = parseInt(output.split(",")[0]);
|
|
cursorY = parseInt(output.split(",")[1]);
|
|
doIt2();
|
|
}
|
|
running = true;
|
|
}
|
|
function doIt2(output) {
|
|
command = ["bash", "-c", "hyprctl dispatch 'hl.dsp.cursor.move({x=9999,y=9999})'"];
|
|
hook = () => {
|
|
doIt3();
|
|
}
|
|
running = true;
|
|
}
|
|
function doIt3(output) {
|
|
root.pin = !root.pin;
|
|
command = ["bash", "-c", `sleep 0.01; hyprctl dispatch 'hl.dsp.cursor.move({x=${cursorX},y=${cursorY}})'`];
|
|
hook = null
|
|
running = true;
|
|
}
|
|
stdout: StdioCollector {
|
|
onStreamFinished: {
|
|
pinWithFunnyHyprlandWorkaroundProc.hook(text);
|
|
}
|
|
}
|
|
}
|
|
|
|
function togglePin() {
|
|
if (!root.pin) pinWithFunnyHyprlandWorkaroundProc.doIt()
|
|
else root.pin = !root.pin;
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
root.sidebarContent = contentComponent.createObject(null, {
|
|
"scopeRoot": root,
|
|
});
|
|
sidebarLoader.item.contentParent.children = [root.sidebarContent];
|
|
}
|
|
|
|
onDetachChanged: {
|
|
if (root.detach) {
|
|
GlobalFocusGrab.removeDismissable(sidebarLoader.item) // Remove sidebar from the focus grab system
|
|
sidebarContent.parent = null; // Detach content from sidebar
|
|
sidebarLoader.active = false; // Unload sidebar
|
|
detachedSidebarLoader.active = true; // Load detached window
|
|
detachedSidebarLoader.item.contentParent.children = [sidebarContent];
|
|
} else {
|
|
sidebarContent.parent = null; // Detach content from window
|
|
detachedSidebarLoader.active = false; // Unload detached window
|
|
sidebarLoader.active = true; // Load sidebar
|
|
sidebarLoader.item.contentParent.children = [sidebarContent];
|
|
}
|
|
}
|
|
|
|
Loader {
|
|
id: sidebarLoader
|
|
active: true
|
|
|
|
sourceComponent: PanelWindow { // Window
|
|
id: panelWindow
|
|
visible: GlobalStates.sidebarLeftOpen
|
|
|
|
property bool extend: false
|
|
property real sidebarWidth: panelWindow.extend ? Appearance.sizes.sidebarWidthExtended : Appearance.sizes.sidebarWidth
|
|
property var contentParent: sidebarLeftBackground
|
|
|
|
function hide() {
|
|
GlobalStates.sidebarLeftOpen = false
|
|
}
|
|
|
|
exclusionMode: ExclusionMode.Normal
|
|
exclusiveZone: root.pin ? sidebarWidth : 0
|
|
implicitWidth: Appearance.sizes.sidebarWidthExtended + Appearance.sizes.elevationMargin
|
|
WlrLayershell.namespace: "quickshell:sidebarLeft"
|
|
// Hyprland 0.49: OnDemand is Exclusive, Exclusive just breaks click-outside-to-close
|
|
WlrLayershell.keyboardFocus: WlrKeyboardFocus.OnDemand
|
|
color: "transparent"
|
|
|
|
anchors {
|
|
top: true
|
|
left: true
|
|
bottom: true
|
|
}
|
|
|
|
mask: Region {
|
|
item: sidebarLeftBackground
|
|
}
|
|
|
|
onVisibleChanged: {
|
|
if (visible && !GlobalStates.oskOpen) {
|
|
GlobalFocusGrab.addDismissable(panelWindow);
|
|
} else {
|
|
GlobalFocusGrab.removeDismissable(panelWindow);
|
|
}
|
|
}
|
|
Connections {
|
|
target: GlobalFocusGrab
|
|
function onDismissed() {
|
|
panelWindow.hide();
|
|
}
|
|
}
|
|
|
|
// OSK flee-fix: squeekboard is an external surface not in the
|
|
// HyprlandFocusGrab whitelist; typing on it clears the grab and
|
|
// hides this panel. While the OSK is open, leave the dismissable
|
|
// set so there is nothing to clear. Mirrors Overview.qml.
|
|
Connections {
|
|
target: GlobalStates
|
|
function onOskOpenChanged() {
|
|
if (!GlobalStates.sidebarLeftOpen) return;
|
|
if (GlobalStates.oskOpen) {
|
|
GlobalFocusGrab.removeDismissable(panelWindow);
|
|
} else {
|
|
GlobalFocusGrab.addDismissable(panelWindow);
|
|
}
|
|
}
|
|
}
|
|
|
|
// Content
|
|
StyledRectangularShadow {
|
|
target: sidebarLeftBackground
|
|
radius: sidebarLeftBackground.radius
|
|
}
|
|
Rectangle {
|
|
id: sidebarLeftBackground
|
|
anchors.top: parent.top
|
|
anchors.left: parent.left
|
|
anchors.topMargin: Appearance.sizes.hyprlandGapsOut
|
|
anchors.leftMargin: Appearance.sizes.hyprlandGapsOut
|
|
width: panelWindow.sidebarWidth - Appearance.sizes.hyprlandGapsOut - Appearance.sizes.elevationMargin
|
|
height: parent.height - Appearance.sizes.hyprlandGapsOut * 2
|
|
color: Appearance.colors.colLayer0
|
|
border.width: 1
|
|
border.color: Appearance.colors.colLayer0Border
|
|
radius: Appearance.rounding.screenRounding - Appearance.sizes.hyprlandGapsOut + 1
|
|
|
|
Behavior on width {
|
|
animation: Appearance.animation.elementMove.numberAnimation.createObject(this)
|
|
}
|
|
|
|
Keys.onPressed: (event) => {
|
|
if (event.key === Qt.Key_Escape) {
|
|
panelWindow.hide();
|
|
}
|
|
if (event.modifiers === Qt.ControlModifier) {
|
|
if (event.key === Qt.Key_O) {
|
|
panelWindow.extend = !panelWindow.extend;
|
|
} else if (event.key === Qt.Key_D) {
|
|
root.toggleDetach();
|
|
} else if (event.key === Qt.Key_P) {
|
|
root.togglePin();
|
|
}
|
|
event.accepted = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
Loader {
|
|
id: detachedSidebarLoader
|
|
active: false
|
|
|
|
sourceComponent: FloatingWindow {
|
|
id: detachedSidebarRoot
|
|
property var contentParent: detachedSidebarBackground
|
|
color: "transparent"
|
|
|
|
visible: GlobalStates.sidebarLeftOpen
|
|
onVisibleChanged: {
|
|
if (!visible) GlobalStates.sidebarLeftOpen = false;
|
|
}
|
|
|
|
Rectangle {
|
|
id: detachedSidebarBackground
|
|
anchors.fill: parent
|
|
color: Appearance.colors.colLayer0
|
|
|
|
Keys.onPressed: (event) => {
|
|
if (event.modifiers === Qt.ControlModifier) {
|
|
if (event.key === Qt.Key_D) {
|
|
root.toggleDetach();
|
|
}
|
|
event.accepted = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// The keyboard leaves with the panel that summoned it.
|
|
//
|
|
// The drawer clears `oskOpen` on close and this did not, so the OSK
|
|
// outlived the surface holding the only text field it was serving — and
|
|
// with nothing focused there was no obvious way to put it away again.
|
|
// Casey, 2026-08-06: the keyboard "can't get it to disappear" on the AI
|
|
// side panel.
|
|
//
|
|
// On the state, not on a visibility handler: the panel's `visible` is a
|
|
// binding to this flag, so reacting to visibility would be reacting to
|
|
// our own effect (Phosh's rule, and SHELL-ECOSYSTEM's).
|
|
Connections {
|
|
target: GlobalStates
|
|
|
|
function onSidebarLeftOpenChanged() {
|
|
if (!GlobalStates.sidebarLeftOpen)
|
|
GlobalStates.oskOpen = false;
|
|
}
|
|
}
|
|
|
|
IpcHandler {
|
|
target: "sidebarLeft"
|
|
|
|
function toggle(): void {
|
|
GlobalStates.sidebarLeftOpen = !GlobalStates.sidebarLeftOpen
|
|
}
|
|
|
|
function close(): void {
|
|
GlobalStates.sidebarLeftOpen = false
|
|
}
|
|
|
|
function open(): void {
|
|
GlobalStates.sidebarLeftOpen = true
|
|
}
|
|
}
|
|
|
|
GlobalShortcut {
|
|
name: "sidebarLeftToggle"
|
|
description: "Toggles left sidebar on press"
|
|
|
|
onPressed: {
|
|
GlobalStates.sidebarLeftOpen = !GlobalStates.sidebarLeftOpen;
|
|
}
|
|
}
|
|
|
|
GlobalShortcut {
|
|
name: "sidebarLeftOpen"
|
|
description: "Opens left sidebar on press"
|
|
|
|
onPressed: {
|
|
GlobalStates.sidebarLeftOpen = true;
|
|
}
|
|
}
|
|
|
|
GlobalShortcut {
|
|
name: "sidebarLeftClose"
|
|
description: "Closes left sidebar on press"
|
|
|
|
onPressed: {
|
|
GlobalStates.sidebarLeftOpen = false;
|
|
}
|
|
}
|
|
|
|
GlobalShortcut {
|
|
name: "sidebarLeftToggleDetach"
|
|
description: "Detach left sidebar into a window/Attach it back"
|
|
|
|
onPressed: {
|
|
root.detach = !root.detach;
|
|
}
|
|
}
|
|
|
|
}
|