Skip to content

Commit c039c96

Browse files
committed
include clamtk and flatseal
1 parent 5a34348 commit c039c96

1 file changed

Lines changed: 18 additions & 5 deletions

File tree

src/data/app_for_install.py

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,39 @@
55
class GetApps:
66
"""Apps to be installed"""
77

8+
#* takes the name of the app, then a dictionary which includes the
9+
#* application id, and then a simple description for the given app
810
recommend_list: dict[str, dict[str, str]] = {
9-
"mailspring": {
11+
"Mailspring": {
1012
"aid": "com.getmailspring.Mailspring",
1113
"simple_description": "A simple email client."
1214
},
13-
"libreoffice": {
15+
"LibreOffice": {
1416
"aid": "org.libreoffice.LibreOffice",
1517
"simple_description": "Office suite."
1618
},
17-
"vlc": {
19+
"VLC": {
1820
"aid": "org.videolan.VLC",
1921
"simple_description": "Video player."
2022
},
21-
"okular": {
23+
"Okular": {
2224
"aid": "org.kde.okular",
2325
"simple_description": "A document viewer."
2426
},
25-
"gimp": {
27+
"GIMP": {
2628
"aid": "org.gimp.GIMP",
2729
"simple_description": "Photo editing application."
30+
},
31+
"ClamTk": {
32+
"aid": "com.gitlab.davem.ClamTk",
33+
"simple_description": "Front end for ClamAV."
34+
},
35+
"FlatSeal": {
36+
"aid": "com.github.tchx84.Flatseal",
37+
"simple_description": (
38+
"GUI for managing flatpak"
39+
" applications permission"
40+
)
2841
}
2942
}
3043
selected_app: list[str] = None

0 commit comments

Comments
 (0)