Float POL. Gamescope

This commit is contained in:
KnightArtorias 2026-05-14 18:50:43 +00:00
parent b5b5d22f4a
commit 2aefab7284
3 changed files with 11 additions and 0 deletions

View file

@ -98,6 +98,11 @@ window-rule {
open-floating true open-floating true
} }
window-rule {
match app-id=r#"^steam_app_default$"# title=r#"^PlayOnline Viewer.+$"#
open-floating true
}
// Example: block out two password managers from screen capture. // Example: block out two password managers from screen capture.
window-rule { window-rule {
match app-id=r#"^org\.keepassxc\.KeePassXC$"# match app-id=r#"^org\.keepassxc\.KeePassXC$"#

View file

@ -8,5 +8,6 @@
./usbutils.nix ./usbutils.nix
./bolt-launcher.nix ./bolt-launcher.nix
./lutris.nix ./lutris.nix
./gamescope.nix
]; ];
} }

View file

@ -0,0 +1,5 @@
{ pkgs, ... }:
{
programs.gamescope.enable = true;
}