summaryrefslogtreecommitdiff
path: root/modules/home-manager/personal/gui
diff options
context:
space:
mode:
authorquentin@aristote.fr <quentin@aristote.fr>2023-03-09 10:40:29 +0100
committerquentin@aristote.fr <quentin@aristote.fr>2023-03-09 10:40:29 +0100
commit51eab484c5f473a7c8dce7fbdd55dbb47c823879 (patch)
tree7d4d0ebdbd767013392e7a2d27052b977eaf0934 /modules/home-manager/personal/gui
parent16e4cb58fddca52200144f32d8e8fbe1dbf1a7ed (diff)
home: i3: assign multimedia windows from title
Diffstat (limited to 'modules/home-manager/personal/gui')
-rw-r--r--modules/home-manager/personal/gui/x/i3/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/home-manager/personal/gui/x/i3/default.nix b/modules/home-manager/personal/gui/x/i3/default.nix
index 3aaf095..443606d 100644
--- a/modules/home-manager/personal/gui/x/i3/default.nix
+++ b/modules/home-manager/personal/gui/x/i3/default.nix
@@ -21,9 +21,9 @@ in {
&& (extraArgs.osConfig.programs.steam.enable or true)) {
"8: multimedia" = [
{ class = "^Steam$"; }
- { class = "Netflix"; }
- { class = "MUBI"; }
- { class = "Deezer"; }
+ { title = "Netflix"; }
+ { title = "MUBI"; }
+ { title = "Deezer"; }
];
} // lib.optionalAttrs config.personal.profiles.social {
"9: social" = [ { class = "^Mail$"; } { class = "^thunderbird$"; } ]