macbook: drop mascots and mbpfan; SMC already ramps

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
This commit is contained in:
rope 2026-08-07 14:36:46 +01:00
parent 8067676713
commit 2c65cf1138
2 changed files with 7 additions and 4 deletions

View file

@ -2011,6 +2011,7 @@ in
width: launcherPanel.visible ? launcherPanel.width : 0
height: launcherPanel.visible ? launcherPanel.height : 0
}
${lib.optionalString (!isMacbook) ''
// Archie's ball. The rest of this surface is click-through,
// so without a hole here you could never pick it up.
Region {
@ -2019,6 +2020,7 @@ in
width: archieDog.hitW
height: archieDog.hitW
}
''}
}
Item {
@ -7351,6 +7353,7 @@ in
// same rects the frame shader draws, paired with the way each
// one slides out: dropdowns and toasts rightward out of the
// bar column, the launcher up out of the bottom frame band.
${lib.optionalString (!isMacbook) ''
Weird {
pushers: [
{ rect: chromeSdf.panel, push: Qt.point(1, 0) },
@ -7361,6 +7364,7 @@ in
// Archie. One dog, primary screen only.
Archie { id: archieDog; primary: bar.screen === Quickshell.screens[0] }
''}
}
'';
};