mirror of
https://github.com/gosticks/PaperWM.git
synced 2026-02-15 05:12:51 +00:00
20 lines
400 B
JavaScript
20 lines
400 B
JavaScript
const Extension = imports.misc.extensionUtils.getCurrentExtension();
|
|
const defwinprop = Extension.imports.tiling.defwinprop
|
|
|
|
defwinprop({
|
|
wm_class: "copyq",
|
|
scratch_layer: true
|
|
});
|
|
|
|
defwinprop({
|
|
wm_class: "Riot",
|
|
oneshot: true, // Allow reattaching
|
|
scratch_layer: true
|
|
});
|
|
|
|
// Fix rofi in normal window mode (eg. in Wayland)
|
|
defwinprop({
|
|
wm_class: "Rofi",
|
|
focus: true
|
|
});
|