feat: basic setup with all packages
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
# NOTE: Bar will be rewritten in QuickShell likely
|
||||
import decman
|
||||
from decman.plugins import pacman, aur
|
||||
|
||||
|
||||
class LoginManager(decman.Module):
|
||||
def __init__(self):
|
||||
"""Base packages that should never be uninstalled"""
|
||||
super().__init__("base")
|
||||
|
||||
@pacman.packages
|
||||
def pkgs(self) -> set[str]:
|
||||
return {
|
||||
# "quickshell",
|
||||
"playerctl",
|
||||
"playerctl",
|
||||
}
|
||||
|
||||
@aur.packages
|
||||
def aurpkgs(self) -> set[str]:
|
||||
# TODO: Rewrite bar in quickshell
|
||||
return {"aylurs-gtk-shell"}
|
||||
Reference in New Issue
Block a user