add(apps): minecraft

This commit is contained in:
kenji
2026-06-30 11:46:18 -05:00
parent b2cabe4c68
commit b67b0a035d
3 changed files with 8 additions and 5 deletions
+5
View File
@@ -0,0 +1,5 @@
{pkgs, ...}: {
home.packages = with pkgs; [
mcpelauncher-client
];
}
+2 -1
View File
@@ -13,8 +13,9 @@
../../apps/ttyper ../../apps/ttyper
../../apps/libreoffice ../../apps/libreoffice
../../apps/antigravity ../../apps/antigravity
# GAMESZ # GAMES
../../apps/mo2 ../../apps/mo2
../../apps/minecraft
]; ];
home.packages = with pkgs; [ home.packages = with pkgs; [
# TODO: migrate these to `apps` folder. # TODO: migrate these to `apps` folder.
+1 -4
View File
@@ -39,6 +39,7 @@
"match:${selector}, fullscreen on" "match:${selector}, fullscreen on"
"match:${selector}, immediate on" "match:${selector}, immediate on"
"match:${selector}, tile on" "match:${selector}, tile on"
"match:${selector}, workspace name:gaming" # <-- This was the missing rule
]; ];
stayFocusedRules = lib.flatten (map ( stayFocusedRules = lib.flatten (map (
@@ -120,10 +121,6 @@ in {
++ (mkGameRules "class ^wine-.*$") ++ (mkGameRules "class ^wine-.*$")
++ (mkGameRules "title ^Wine .*$") ++ (mkGameRules "title ^Wine .*$")
++ (mkGameRules "initial_title ^(?i)godot.*$") ++ (mkGameRules "initial_title ^(?i)godot.*$")
# "monitor 0, initialTitle:^(?i)godot.*$"
# "fullscreen, initialTitle:^(?i)godot.*$"
# "tile, initialTitle:^(?i)godot.*$"
# ]
++ stayFocusedRules; ++ stayFocusedRules;
}; };
} }