-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathrecipes.json
355 lines (355 loc) · 10.7 KB
/
recipes.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
[
{
"name": "Update packages",
"description": "Install the latest version of all your software",
"type": "generic",
"recipe": ["apt", "upgrade", "-y"]
},
{
"name": "Automatic drivers",
"description": "Install drivers that are appropriate for automatic installation",
"type": "generic",
"recipe": ["ubuntu-drivers", "autoinstall"]
},
{
"name": "Java, Flash and codecs",
"description": "Install non-open-source packages like Java, Flash plugin, Unrar, and some audio and video codecs like MP3/AVI/MPEG",
"type": "package",
"recipe": ["ubuntu-restricted-extras"],
"preInstall": ["echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections"]
},
{
"name": "Google Chrome",
"description": "The web browser from Google",
"type": "deb",
"recipe": ["https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb"]
},
{
"name": "Chromium",
"description": "The open-source web browser providing the code for Google Chrome",
"type": "snap",
"recipe": ["chromium"]
},
{
"name": "Firefox",
"description": "The web browser from Mozilla",
"type": "snap",
"recipe": ["firefox"]
},
{
"name": "Opera",
"description": "Just another web browser",
"type": "snap",
"recipe": ["opera"]
},
{
"name": "Transmission",
"description": "A light bittorrent download client",
"type": "ppa",
"recipe": ["ppa:transmissionbt/ppa", "transmission-gtk"]
},
{
"name": "Dropbox",
"description": "A cloud hosting service to store your files online",
"type": "deb",
"recipe": ["https://linux.dropbox.com/packages/ubuntu/dropbox_2019.01.31_amd64.deb"]
},
{
"name": "VirtualBox",
"description": "A virtualization software to run other OSes on top of your current OS",
"type": "package",
"recipe": ["virtualbox"]
},
{
"name": "Skype",
"description": "A videocall software from Microsoft",
"type": "snap",
"recipe": ["skype", "--classic"]
},
{
"name": "Thunderbird",
"description": "A mail client from Mozilla",
"type": "package",
"recipe": ["thunderbird"]
},
{
"name": "Mailspring",
"description": "A beautiful mail client",
"type": "snap",
"recipe": ["mailspring"]
},
{
"name": "Telegram",
"description": "A messenger application",
"type": "snap",
"recipe": ["telegram-desktop"]
},
{
"name": "Slack",
"description": "A team communication application",
"type": "snap",
"recipe": ["slack", "--classic"]
},
{
"name": "VLC",
"description": "The most famous multimedia player",
"type": "snap",
"recipe": ["vlc"]
},
{
"name": "Kazam",
"description": "A tool to record your screen and take screenshots",
"type": "package",
"recipe": ["kazam"]
},
{
"name": "Handbrake",
"description": "A video transcoder",
"type": "ppa",
"recipe": ["ppa:stebbins/handbrake-releases", "handbrake-gtk", "handbrake-cli"]
},
{
"name": "Spotify",
"description": "One of the best music streaming apps",
"type": "snap",
"recipe": ["spotify"]
},
{
"name": "Audacity",
"description": "Record and edit audio files",
"type": "package",
"recipe": ["audacity"]
},
{
"name": "Soundconverter",
"description": "Audio file converter",
"type": "package",
"recipe": ["soundconverter"]
},
{
"name": "Mixxx",
"description": "A MP3 DJ mixing software",
"type": "ppa",
"recipe": ["ppa:mixxx/mixxx", "mixxx"]
},
{
"name": "LMMS",
"description": "Music production for everyone: loops, synthesizers, mixer...",
"type": "package",
"recipe": ["lmms"]
},
{
"name": "Gimp",
"description": "An image editor",
"type": "snap",
"recipe": ["gimp"]
},
{
"name": "Inkscape",
"description": "Create and edit scalable vectorial images",
"type": "snap",
"recipe": ["inkscape"]
},
{
"name": "Blender",
"description": "3D modelling, animation, rendering and production",
"type": "snap",
"recipe": ["blender", "--classic"]
},
{
"name": "Freecad",
"description": "An open-source parametric 3D modeler",
"type": "ppa",
"recipe": ["ppa:freecad-maintainers/freecad-stable", "freecad"]
},
{
"name": "LibreOffice",
"description": "A complete office suite: word processor, spreadsheets, slideshows, drawings and more",
"type": "snap",
"recipe": ["libreoffice"]
},
{
"name": "Evince",
"description": "A document viewer with support for PDF and more",
"type": "package",
"recipe": ["evince"]
},
{
"name": "TexStudio",
"description": "An integrated writing environment for creating LaTeX documents",
"type": "ppa",
"recipe": ["ppa:sunderme/texstudio", "texstudio"]
},
{
"name": "Diffpdf",
"description": "A tool to compare PDF files",
"type": "package",
"recipe": ["diffpdf"]
},
{
"name": "Steam",
"description": "A videogame platform",
"type": "deb",
"recipe": ["http://repo.steampowered.com/steam/archive/precise/steam_latest.deb"]
},
{
"name": "0 A.D.",
"description": "A game of ancient warfare, similar to Age of Empires",
"type": "package",
"recipe": ["0ad"]
},
{
"name": "PlayOnLinux",
"description": "A tool to install Windows games on Linux",
"type": "package",
"recipe": ["playonlinux"]
},
{
"name": "GameHub",
"description": "An unified library for all your games",
"type": "ppa",
"recipe": ["ppa:tkashkin/gamehub", "com.github.tkashkin.gamehub"]
},
{
"name": "Disk utility",
"description": "A tool to manage your drives",
"type": "package",
"recipe": ["gnome-disk-utility"]
},
{
"name": "GParted",
"description": "A tool to make partitions in your hard drives",
"type": "package",
"recipe": ["gparted"]
},
{
"name": "MenuLibre",
"description": "Add or remove applications from your menu",
"type": "package",
"recipe": ["menulibre"]
},
{
"name": "Seahorse",
"description": "Manage your passwords",
"type": "package",
"recipe": ["seahorse"]
},
{
"name": "EncFS manager",
"description": "Create and manage encrypted folders to keep your files safe",
"type": "ppa",
"recipe": ["ppa:gencfsm", "gnome-encfs-manager"],
"preInstall": ["echo encfs encfs/security-information boolean true | sudo debconf-set-selections"]
},
{
"name": "FileZilla",
"description": "Download and upload files via FTP, FTPS and SFTP",
"type": "package",
"recipe": ["filezilla"]
},
{
"name": "Utilities bundle",
"description": "Java, zip, rar and exfat tools",
"type": "package",
"recipe": ["icedtea-8-plugin", "openjdk-8-jre", "p7zip", "rar", "exfat-fuse", "exfat-utils"]
},
{
"name": "Developer bundle",
"description": "Tools for developers: build-essential, cmake, git, svn, java, python, octave, autotools...",
"type": "package",
"recipe": ["build-essential", "cmake", "cmake-gui", "cmake-curses-gui", "python3", "python3-pip", "octave", "gfortran", "git", "git-svn", "subversion", "kdiff3", "colordiff", "openjdk-8-jdk", "autoconf", "autotools-dev", "cppcheck"]
},
{
"name": "Visual Studio Code",
"description": "A source code editor developed by Microsoft",
"type": "snap",
"recipe": ["code", "--classic"],
"preInstall": ["echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections"]
},
{
"name": "Atom",
"description": "A hackable text editor",
"type": "ppa",
"recipe": ["ppa:webupd8team/atom", "atom"]
},
{
"name": "Android Studio",
"description": "The IDE for Android",
"type": "snap",
"recipe": ["android-studio", "--classic"]
},
{
"name": "GitKraken",
"description": "A graphical git client from Axosoft",
"type": "snap",
"recipe": ["gitkraken"]
},
{
"name": "rEFInd",
"description": "An EFI boot manager",
"type": "ppa",
"recipe": ["ppa:rodsmith/refind", "refind"],
"preInstall": ["echo refind refind/install_to_esp boolean true | sudo debconf-set-selections"],
"postInstall": ["refind-install"]
},
{
"name": "Discord",
"description": "A gaming voice/chat service",
"type": "snap",
"recipe": ["discord"]
},
{
"name": "TuxGuitar",
"description": "A tablature editor",
"type": "snap",
"recipe": ["tuxguitar-vs"]
},
{
"name": "Ukuu",
"description": "A kernel update tool",
"type": "ppa",
"recipe": ["ppa:teejee2008/ppa", "ukuu"]
},
{
"name": "Gnome System Monitor",
"description": "A system resource usage monitor",
"type": "package",
"recipe": ["gnome-system-monitor"]
},
{
"name": "ANoise",
"description": "An ambient music player",
"type": "ppa",
"recipe": ["ppa:costales/anoise", "anoise"]
},
{
"name": "Minetest",
"description": "A Minecraft clone",
"type": "ppa",
"recipe": ["ppa:minetestdevs/stable", "minetest"]
},
{
"name": "Openshot",
"description": "A video editor",
"type": "ppa",
"recipe": ["ppa:openshot.developers/ppa", "openshot-qt"]
},
{
"name": "Retroarch",
"description": "A retro games emulator frontend",
"type": "snap",
"recipe": ["retroarch"]
},
{
"name": "Ulauncher",
"description": "Application launcher for Linux",
"type": "ppa",
"recipe": ["ppa:agornostal/ulauncher", "ulauncher"]
},
{
"name": "Jumpapp",
"description": "Application switcher for Linux",
"type": "ppa",
"recipe": ["ppa:mkropat/ppa", "jumpapp"]
}
]