Skip to content

Commit 920a34e

Browse files
committed
dataclass of the apps to be installed
1 parent cb7d4c1 commit 920a34e

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

src/data/app_for_install.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)