Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions modules/services/CompositorConfig.qml
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,9 @@ QtObject {

console.log(`CompositorConfig: Applying ignorealpha: ${ignoreAlphaValue}, explicit: ${Config.compositor.blurExplicitIgnoreAlpha}`);
batchCommand += ` ; keyword layerrule noanim,quickshell ; keyword layerrule blur,quickshell ; keyword layerrule blurpopups,quickshell ; keyword layerrule ignorealpha ${ignoreAlphaValue},quickshell`;
console.log("CompositorConfig: Refreshing TOML via CompositorTomlWriter");
CompositorTomlWriter.refresh();
console.log("CompositorConfig: Applying compositor batch command:", batchCommand);
compositorProcess.command = ["axctl", "config", "raw-batch", batchCommand];
compositorProcess.running = true;
}

property Connections configConnections: Connections {
Expand Down
4 changes: 4 additions & 0 deletions shell.qml
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,10 @@ ShellRoot {
id: compositorConfig
}

CompositorKeybinds {
id: compositorKeybinds
}

// Screenshot tool
Variants {
model: Quickshell.screens
Expand Down