feat: basic setup with all packages
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
import decman
|
||||
from decman.plugins import pacman, aur
|
||||
|
||||
|
||||
class Games(decman.Module):
|
||||
def __init__(self):
|
||||
"""Base packages that should never be uninstalled"""
|
||||
super().__init__("games")
|
||||
|
||||
@pacman.packages
|
||||
def pkgs(self) -> set[str]:
|
||||
return {
|
||||
"android-udev",
|
||||
"android-tools",
|
||||
"lib32-vulkan-radeon",
|
||||
"vulkan-radeon",
|
||||
"steam",
|
||||
"prismlauncher",
|
||||
"gamemmode",
|
||||
"gamescope",
|
||||
}
|
||||
|
||||
@aur.packages
|
||||
def aurpkgs(self) -> set[str]:
|
||||
# Consider switching to WiVRN
|
||||
return {"bs-manager-bin", "alvr-bin"}
|
||||
Reference in New Issue
Block a user