We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb7d4c1 commit 920a34eCopy full SHA for 920a34e
1 file changed
src/data/app_for_install.py
@@ -0,0 +1,15 @@
1
+from dataclasses import dataclass
2
+
3
4
+@dataclass
5
+class GetApps:
6
+ """Apps to be installed"""
7
8
+ recommend_list: dict[str, str] = {
9
+ "mailspring": "com.getmailspring.Mailspring",
10
+ "libreoffice": "org.libreoffice.LibreOffice",
11
+ "vlc": "org.videolan.VLC",
12
+ "okular": "org.kde.okular",
13
+ "gimp": "org.gimp.GIMP"
14
+ }
15
+ selected_app: list[str] = None
0 commit comments