feat: move to DankMaterialShell, remove quickshell config updates

This commit is contained in:
2026-06-14 15:12:24 +02:00
parent 940ee3e988
commit e74b162b91
27 changed files with 34 additions and 605 deletions
+20
View File
@@ -0,0 +1,20 @@
# NOTE: Bar may eventually be replaced by custom bar
import decman
from decman.plugins import pacman
class DesktopShell(decman.Module):
def __init__(self):
"""DesktopShell"""
super().__init__("base")
@pacman.packages
def pkgs(self) -> set[str]:
return {"dms-shell", "cava", "matugen"}
# TODO: Copy the config, once done
def directories(self) -> dict[str, decman.Directory]:
return { "~/.config/matugen": decman.Directory("./config/matugen") }
def files(self) -> dict[str, decman.File]:
return { "~/.config/matugen": decman.File("") }