mirror of
https://github.com/kiviktnm/decman.git
synced 2026-09-19 12:08:28 +00:00
Fixed the management of flatpak packages installed to the user installation as requested in the PR
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[str]:
|
||||
return ["io.github.kolunmi.Bazaar"]
|
||||
def flatpak_user_packages(self) -> list[tuple[str,str]]:
|
||||
return [("username", "io.github.kolunmi.Bazaar")]
|
||||
|
||||
def systemd_units(self) -> list[str]:
|
||||
return ["reflector.timer"]
|
||||
|
||||
+3
-1
@@ -38,7 +38,9 @@ decman.flatpak_packages += ["dev.qwery.AddWater"]
|
||||
decman.ignored_flatpak_packages += ["org.signal.Signal"]
|
||||
|
||||
# You can also install them to your user installation instead of the system installation
|
||||
decman.flatpak_user_packages += ["dev.zed.Zed"]
|
||||
decman.flatpak_user_packages += [
|
||||
("username", "dev.zed.Zed")
|
||||
]
|
||||
|
||||
# To import GPG keys, set the GNUPGHOME environment variable.
|
||||
# It can easily be done with python as well.
|
||||
|
||||
Reference in New Issue
Block a user