mirror of
https://github.com/kiviktnm/decman.git
synced 2026-09-19 12:08:28 +00:00
Switched the variable type of user defined flatpak packages to match the type of the user systemd services
This commit is contained in:
@@ -116,8 +116,8 @@ class MyModule(Module):
|
||||
def flatpak_packages(self) -> list[str]:
|
||||
return ["org.mozilla.firefox"]
|
||||
|
||||
def flatpak_user_packages(self) -> list[tuple[str,str]]:
|
||||
return [("username", "io.github.kolunmi.Bazaar")]
|
||||
def flatpak_user_packages(self) -> dict[str, list[str]]:
|
||||
return {"username": ["io.github.kolunmi.Bazaar"]}
|
||||
|
||||
def systemd_units(self) -> list[str]:
|
||||
return ["reflector.timer"]
|
||||
|
||||
Reference in New Issue
Block a user