-
Notifications
You must be signed in to change notification settings - Fork 3
/
nattd.json
766 lines (765 loc) · 41.7 KB
/
nattd.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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
{
"system_config": {
"description": "Configure the system settings",
"set_hostname": {
"name": "Set Hostname",
"command": [
"log_message \"Setting hostname...\"",
"hostnamectl set-hostname"
],
"description": "Set the system hostname to uniquely identify the machine on the network"
},
"configure_dnf": {
"name": "Configure DNF",
"command": [
"log_message \"Configuring DNF Package Manager...\"",
"backup_file \"/etc/dnf/dnf.conf\"",
"echo \"max_parallel_downloads=10\" | tee -a /etc/dnf/dnf.conf > /dev/null",
"echo \"fastestmirror=True\" | tee -a /etc/dnf/dnf.conf > /dev/null",
"dnf -y install dnf-plugins-core"
],
"description": "Optimize DNF package manager for faster downloads and efficient updates"
},
"enable_dnf_autoupdate": {
"name": "Enable DNF Autoupdate",
"command": [
"log_message \"Enabling DNF autoupdate...\"",
"dnf install dnf-automatic -y",
"sed -i 's/apply_updates = no/apply_updates = yes/' /etc/dnf/automatic.conf",
"systemctl enable --now dnf-automatic.timer"
],
"description": "Enable and configure automatic system updates to enhance security and stability"
},
"install_ssh": {
"name": "Install and Enable SSH",
"command": [
"log_message \"Installing and enabling SSH...\"",
"dnf install -y openssh-server",
"systemctl enable --now sshd"
],
"description": "Install and enable SSH server for secure remote access and file transfers"
},
"firmware_updates": {
"name": "Update Firmware",
"command": [
"log_message \"Checking for firmware updates...\"",
"fwupdmgr refresh --force",
"fwupdmgr get-updates",
"fwupdmgr update -y"
],
"description": "Check and apply firmware updates to improve hardware compatibility and performance"
},
"enable_rpmfusion": {
"name": "RPM Fusion Repositories",
"command": [
"log_message \"Enabling RPM Fusion repositories...\"",
"dnf install -y https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm",
"dnf install -y https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm",
"dnf group update core -y"
],
"description": "Enable RPM Fusion repositories to access additional software packages and codecs"
},
"install_multimedia_codecs": {
"name": "Multimedia Codecs",
"command": [
"log_message \"Installing multimedia codecs...\"",
"dnf swap ffmpeg-free ffmpeg --allowerasing -y",
"dnf update @multimedia --setopt=\"install_weak_deps=False\" --exclude=PackageKit-gstreamer-plugin -y",
"dnf update @sound-and-video -y"
],
"description": "Install multimedia codecs to enhance multimedia capabilities",
"dependencies": ["install_rpmfusion"]
},
"install_intel_codecs": {
"name": "Intel Codecs",
"command": [
"log_message \"Installing Intel Hardware Accelerated Codecs...\"",
"dnf -y install intel-media-driver"
],
"description": "Install Hardware Accelerated Codecs for Intel integrated GPUs. This improves video playback and encoding performance on systems with Intel graphics.",
"dependencies": ["install_rpmfusion"]
},
"install_amd_codecs": {
"name": "AMD Codecs",
"command": [
"log_message \"Installing AMD Hardware Accelerated Codecs...\"",
"dnf swap mesa-va-drivers mesa-va-drivers-freeworld -y",
"dnf swap mesa-vdpau-drivers mesa-vdpau-drivers-freeworld -y"
],
"description": "Install Hardware Accelerated Codecs for AMD GPUs. This improves video playback and encoding performance on systems with AMD graphics.",
"dependencies": ["install_rpmfusion"]
},
"install_virtualization_tools": {
"name": "Virtualization Tools",
"command": [
"log_message \"Installing virtualization tools...\"",
"dnf install -y @virtualization"
],
"description": "Install virtualization tools to enable virtual machines and containerization"
},
"configure_power_settings": {
"name": "Power Settings",
"command": [
"log_message \"Configuring power settings...\"",
"sudo -u $ACTUAL_USER gsettings set org.gnome.desktop.session idle-delay 0",
"sudo -u $ACTUAL_USER gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-ac-type 'nothing'",
"sudo -u $ACTUAL_USER gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-battery-type 'nothing'",
"sudo -u $ACTUAL_USER gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-ac-timeout 0",
"sudo -u $ACTUAL_USER gsettings set org.gnome.settings-daemon.plugins.power sleep-inactive-battery-timeout 0",
"sudo -u $ACTUAL_USER gsettings set org.gnome.settings-daemon.plugins.power power-button-action 'suspend'"
],
"description": "Configure power settings to prevent system sleep and hibernation"
}
},
"essential_apps": {
"description": "Install a set of essential command-line and graphical applications for system management and productivity",
"apps": [
{"name": "mc", "description": "Midnight Commander: Versatile text-based file manager with dual pane interface"},
{"name": "btop", "description": "Resource monitor that shows usage and stats for processor, memory, disks, network and processes"},
{"name": "htop", "description": "Interactive process viewer and system monitor with a customizable interface"},
{"name": "rsync", "description": "Fast and versatile file copying tool for local and remote file synchronization"},
{"name": "inxi", "description": "Command-line system information tool for hardware, CPU, drivers, and more"},
{"name": "ncdu", "description": "NCurses-based disk usage analyzer for quickly finding large files and directories"},
{"name": "tilix", "description": "Tiling terminal emulator with advanced features like split panes and session management"},
{"name": "tmux", "description": "Terminal multiplexer for creating multiple terminal sessions within a single window"},
{"name": "fastfetch", "description": "Quick system information tool that displays OS, kernel, uptime, and more"},
{"name": "unzip", "description": "Extraction utility for ZIP archives with support for various compression methods"},
{"name": "unrar", "description": "Extraction utility for RAR archives, including support for password-protected files"},
{"name": "git", "description": "Distributed version control system for tracking changes in source code and collaboration"},
{"name": "wget", "description": "Command-line utility for retrieving files using HTTP, HTTPS, and FTP protocols"},
{"name": "curl", "description": "Command-line tool for transferring data using various protocols with extensive options"},
{"name": "gnome-tweaks", "description": "Advanced configuration tool for customizing GNOME desktop environment settings"},
{"name": "syncthing", "description": "Continuous file synchronization program for sharing files between devices securely"}
]
},
"additional_apps": {
"internet_communication": {
"name": "Internet & Communication",
"apps": {
"install_firefox": {
"name": "Firefox",
"command": "flatpak install -y flathub org.mozilla.firefox",
"description": "Fast, private & safe web browser."
},
"install_chrome": {
"name": "Google Chrome",
"command": "flatpak install -y flathub com.google.Chrome",
"description": "The web browser from Google."
},
"install_chromium": {
"name": "Chromium",
"command": "flatpak install -y flathub org.chromium.Chromium",
"description": "An open-source browser project that aims to build a safer, faster, and more stable way to experience the web."
},
"install_brave": {
"name": "Brave",
"description": "Privacy-focused web browser.",
"installation_types": {
"DNF": {
"command": [
"dnf install -y dnf-plugins-core",
"dnf4 config-manager --add-repo https://brave-browser-rpm-release.s3.brave.com/brave-browser.repo",
"rpm --import https://brave-browser-rpm-release.s3.brave.com/brave-core.asc",
"dnf install -y brave-browser"
]
},
"Flatpak": {
"command": "flatpak install -y flathub com.brave.Browser"
}
}
},
"install_vivaldi": {
"name": "Vivaldi",
"description": "Feature-rich, customizable web browser with built-in productivity tools and privacy features",
"installation_types": {
"DNF": {
"command": [
"wget https://downloads.vivaldi.com/stable/vivaldi-stable-6.8.3381.48-1.x86_64.rpm",
"dnf install -y ./vivaldi-stable-6.8.3381.48-1.x86_64.rpm",
"rm -f ./vivaldi-stable-6.8.3381.48-1.x86_64.rpm"
]
},
"Flatpak": {
"command": "flatpak install -y flathub com.vivaldi.Vivaldi"
}
}
},
"install_edge": {
"name": "Microsoft Edge",
"command": "flatpak install -y flathub com.microsoft.Edge",
"description": "The web browser from Microsoft."
},
"install_librewolf": {
"name": "LibreWolf",
"command": "flatpak install -y flathub io.gitlab.librewolf",
"description": "A privacy-focused fork of Firefox, emphasizing security and user freedom."
},
"install_opera": {
"name": "Opera",
"command": "flatpak install -y flathub com.opera.Opera",
"description": "A fast, feature-rich web browser with a focus on user experience and security."
},
"install_thunderbird": {
"name": "Thunderbird",
"command": "flatpak install -y flathub org.mozilla.Thunderbird",
"description": "The email client from Mozilla."
},
"install_betterbird": {
"name": "Betterbird",
"command": "flatpak install -y flathub eu.betterbird.Betterbird",
"description": "A fast, feature-rich email client with a focus on user experience and security."
},
"install_webappmanager": {
"name": "WebAppManager",
"command": [
"sudo dnf copr enable risi/risiOS -y",
"echo 'includepkgs=webapp-manager' | sudo tee -a /etc/yum.repos.d/_copr:copr.fedorainfracloud.org:risi:risiOS.repo",
"dnf install webapp-manager -y"
],
"description": "Run websites as if they were apps."
},
"install_discord": {
"name": "Discord",
"command": "flatpak install -y flathub com.discordapp.Discord",
"description": "A popular communication platform for gamers and communities"
},
"install_element": {
"name": "Element",
"command": "flatpak install -y flathub im.riot.Riot",
"description": "A secure, open-source Matrix client"
},
"install_telegram": {
"name": "Telegram Desktop",
"command": "flatpak install -y flathub org.telegram.desktop",
"description": "A messaging app with a focus on speed and security"
},
"install_signal": {
"name": "Signal Desktop",
"command": "flatpak install -y flathub org.signal.Signal",
"description": "A private messaging app with end-to-end encryption"
},
"install_whatsapp": {
"name": "Whatsie",
"command": "flatpak install -y flathub com.ktechpit.whatsie",
"description": "Feature rich WhatsApp web client based on Qt WebEngine"
},
"install_tor": {
"name": "Tor",
"command": [
"dnf install -y tor",
"sleep 5",
"systemctl enable --now tor",
"flatpak install -y flathub org.torproject.torbrowser-launcher"
],
"description": "Tor service and Tor Browser Launcher for secure networking"
}
}
},
"office_productivity": {
"name": "Office Productivity",
"apps": {
"install_libreoffice": {
"name": "LibreOffice",
"command": [
"dnf remove -y libreoffice*",
"flatpak install -y flathub org.libreoffice.LibreOffice",
"flatpak install -y --reinstall org.freedesktop.Platform.Locale/x86_64/23.08",
"flatpak install -y --reinstall org.libreoffice.LibreOffice.Locale"
],
"description": "A powerful office suite. Its clean interface and feature-rich tools help you unleash your creativity and enhance your productivity"
},
"install_onlyoffice": {
"name": "OnlyOffice",
"command": "flatpak install -y flathub org.onlyoffice.desktopeditors",
"description": "Create, view and edit text documents, spreadsheets and presentations of any size and complexity"
},
"install_wpsoffice": {
"name": "WPS Office",
"command": "flatpak install -y flathub com.wps.Office",
"description": "a powerful office suite, which is able to process word file, produce wonderful slides, and analyze data as well"
},
"install_joplin": {
"name": "Joplin",
"command": "flatpak install -y flathub net.cozic.joplin_desktop",
"description": "A note-taking app with a focus on privacy and security"
},
"install_logseq": {
"name": "Logseq",
"command": "flatpak install -y flathub com.logseq.Logseq",
"description": "A knowledge management tool with a focus on privacy and security"
},
"install_obsidian": {
"name": "Obsidian",
"command": "flatpak install -y flathub md.obsidian.Obsidian",
"description": "A note-taking app with a focus on privacy and security"
},
"install_dialect": {
"name": "Dialect",
"command": "flatpak install -y flathub app.drey.Dialect",
"description": "A translation app for GNOME supporting multiple services"
},
"install_decoder": {
"name": "Decoder",
"command": "flatpak install -y flathub com.belmoussaoui.Decoder",
"description": "Fancy yet simple QR Codes scanner and generator."
},
"install_bitwarden": {
"name": "Bitwarden",
"command": "flatpak install -y flathub com.bitwarden.desktop",
"description": "A secure and free password manager for all of your devices"
},
"install_keepassxc": {
"name": "KeePassXC",
"command": "dnf install -y keepassxc",
"description": "A free, open-source, and easy-to-use password manager"
}
}
},
"development_tools": {
"name": "Coding and DevOps",
"apps": {
"install_vscode": {
"name": "Visual Studio Code",
"command": [
"sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc",
"echo -e \"[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc\" | sudo tee /etc/yum.repos.d/vscode.repo > /dev/null",
"dnf check-update",
"dnf install -y code"
],
"description": "A powerful source code editor"
},
"install_vscodium": {
"name": "VSCodium",
"command": [
"rpmkeys --import https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg",
"printf \"[gitlab.com_paulcarroty_vscodium_repo]\nname=download.vscodium.com\nbaseurl=https://download.vscodium.com/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg\nmetadata_expire=1h\" | sudo tee -a /etc/yum.repos.d/vscodium.repo",
"dnf install -y codium"
],
"description": "A free and open-source distribution of VS Code"
},
"install_github_desktop": {
"name": "GitHub Desktop",
"command": "flatpak install flathub io.github.shiftey.Desktop",
"description": "A powerful desktop client for GitHub"
},
"install_gitkraken": {
"name": "GitKraken",
"command": "flatpak install flathub com.axosoft.GitKraken",
"description": "A tool for repo management, in-app code editing & issue tracking"
},
"install_ansible": {
"name": "Ansible",
"command": "dnf install -y ansible",
"description": "A powerful automation tool for IT"
},
"install_docker": {
"name": "Docker",
"command": [
"dnf remove -y docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-selinux docker-engine-selinux docker-engine --noautoremove",
"dnf -y install dnf-plugins-core",
"dnf4 config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo",
"dnf install -y docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin",
"systemctl enable --now docker",
"systemctl enable --now containerd",
"groupadd docker",
"usermod -aG docker $ACTUAL_USER",
"rm -rf $ACTUAL_HOME/.docker",
"echo \"Docker installed successfully. Please log out and back in for the group changes to take effect.\""
],
"description": "A platform for building, shipping, and running applications in containers"
},
"install_podman": {
"name": "Podman",
"command": "dnf install -y podman",
"description": "A tool for managing containers and pods"
},
"install_tabby": {
"name": "Tabby",
"command": [
"wget https://github.com/Eugeny/tabby/releases/download/v1.0.211/tabby-1.0.211-linux-x64.rpm",
"dnf install -y ./tabby-1.0.211-linux-x64.rpm",
"rm -f ./tabby-1.0.211-linux-x64.rpm"
],
"description": "A terminal for a more modern age"
},
"install_zsh_oh_my_zsh": {
"name": "Zsh and Oh My Zsh",
"command": [
"dnf install -y zsh",
"sudo -u $ACTUAL_USER sh -c \"RUNZSH=no $(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)\" \"\" --unattended",
"chsh -s $(which zsh) $ACTUAL_USER",
"sudo -u $ACTUAL_USER bash << EOF",
"git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-$ACTUAL_HOME/.oh-my-zsh/custom}/plugins/zsh-autosuggestions",
"git clone https://github.com/marlonrichert/zsh-autocomplete.git ${ZSH_CUSTOM:-$ACTUAL_HOME/.oh-my-zsh/custom}/plugins/zsh-autocomplete",
"git clone https://github.com/zsh-users/zsh-history-substring-search ${ZSH_CUSTOM:-$ACTUAL_HOME/.oh-my-zsh/custom}/plugins/zsh-history-substring-search",
"git clone https://github.com/zsh-users/zsh-syntax-highlighting.git ${ZSH_CUSTOM:-$ACTUAL_HOME/.oh-my-zsh/custom}/plugins/zsh-syntax-highlighting",
"sed -i 's/plugins=(git)/plugins=(dnf aliases genpass git zsh-autosuggestions zsh-autocomplete zsh-history-substring-search z zsh-syntax-highlighting)/' $ACTUAL_HOME/.zshrc",
"sed -i 's/ZSH_THEME=\"robbyrussell\"/ZSH_THEME=\"jonathan\"/' $ACTUAL_HOME/.zshrc",
"EOF"
],
"description": "Install Zsh shell and Oh My Zsh framework"
},
"install_miniconda": {
"name": "Miniconda",
"command": [
"sudo -u $ACTUAL_USER bash << EOF",
"mkdir -p $ACTUAL_HOME/.miniconda3",
"wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O $ACTUAL_HOME/.miniconda3/miniconda.sh",
"bash $ACTUAL_HOME/.miniconda3/miniconda.sh -b -u -p $ACTUAL_HOME/.miniconda3",
"rm -rf $ACTUAL_HOME/.miniconda3/miniconda.sh",
"$ACTUAL_HOME/.miniconda3/bin/conda init bash",
"$ACTUAL_HOME/.miniconda3/bin/conda init zsh",
"EOF"
],
"description": "Install Miniconda Python distribution"
}
}
},
"media_graphics": {
"name": "Media & Graphics",
"apps": {
"install_vlc": {
"name": "VLC",
"command": "flatpak install -y flathub org.videolan.VLC",
"description": "A media player with a focus on privacy and security"
},
"install_stremio": {
"name": "Stremio",
"command": "flatpak install -y flathub com.stremio.Stremio",
"description": "A media center with a focus on privacy and security"
},
"install_spotify": {
"name": "Spotify",
"command": "flatpak install -y flathub com.spotify.Client",
"description": "A music streaming service with a focus on privacy and security"
},
"install_gimp": {
"name": "GIMP",
"description": "a freely distributed program for such tasks as photo retouching, image composition and image authoring",
"installation_types": {
"DNF": {
"command": "dnf install -y gimp"
},
"Flatpak": {
"command": "flatpak install -y flathub org.gimp.GIMP"
}
}
},
"install_inkscape": {
"name": "Inkscape",
"description": "A Free and open source vector graphics editor",
"installation_types": {
"DNF": {
"command": "dnf install -y inkscape"
},
"Flatpak": {
"command": "flatpak install -y flathub org.inkscape.Inkscape"
}
}
},
"install_krita": {
"name": "Krita",
"command": "flatpak install -y flathub org.kde.krita",
"description": "A full-featured digital art studio."
},
"install_blender": {
"name": "Blender",
"command": "flatpak install -y flathub org.blender.Blender",
"description": "A free and open source 3D creation suite."
},
"install_obs": {
"name": "OBS Studio",
"command": "flatpak install -y flathub com.obsproject.Studio",
"description": "Free and open source software for video capturing, recording, and live streaming."
},
"install_kdenlive": {
"name": "Kdenlive",
"command": "flatpak install -y flathub org.kde.kdenlive",
"description": "A video editing application with support for many audio and video formats"
},
"install_freetube": {
"name": "FreeTube",
"command": "flatpak install -y flathub com.freetubeapp.FreeTube",
"description": "An open source desktop YouTube player built with privacy in mind."
}
}
},
"gaming_emulation": {
"name": "Gaming & Emulation",
"apps": {
"install_steam": {
"name": "Steam",
"description": "A software distribution service with an online store, automated installation, automatic updates, achievements, SteamCloud synchronized savegame and screenshot functionality, and many social features",
"installation_types": {
"DNF": {
"command": "dnf install -y steam"
},
"Flatpak": {
"command": "flatpak install -y flathub com.valvesoftware.Steam"
}
}
},
"install_lutris": {
"name": "Lutris",
"command": "flatpak install -y flathub net.lutris.Lutris",
"description": "Helps you install and play video games from all eras and from most gaming systems"
},
"install_heroic": {
"name": "Heroic Games Launcher",
"command": "flatpak install -y flathub com.heroicgameslauncher.hgl",
"description": "A free and open source games launcher."
},
"install_retroarch": {
"name": "RetroArch",
"command": "flatpak install -y flathub org.libretro.RetroArch",
"description": "Enables you to run classic games on a wide range of computers and consoles"
},
"install_dolphin": {
"name": "Dolphin",
"command": "flatpak install -y flathub org.DolphinEmu.dolphin-emu",
"description": "An emulator for two recent Nintendo video game consoles: the GameCube and the Wii"
},
"install_duckstation": {
"name": "DuckStation",
"command": "flatpak install -y flathub org.duckstation.DuckStation",
"description": "An simulator/emulator of the Sony PlayStation(TM) console"
},
"install_ppsspp": {
"name": "PPSSPP",
"command": "flatpak install -y flathub org.ppsspp.PPSSPP",
"description": "A PSP emulator that can run games in full HD resolution"
},
"install_pcsx2": {
"name": "PCSX2",
"command": "flatpak install -y flathub net.pcsx2.PCSX2",
"description": "A free and open-source PlayStation 2 emulator"
},
"install_melonds": {
"name": "melonDS",
"command": "flatpak install -y flathub net.kuribo64.melonDS",
"description": "Aims at providing fast and accurate Nintendo DS emulation"
},
"install_xemu": {
"name": "xemu",
"command": "flatpak install -y flathub app.xemu.xemu",
"description": "A free and open-source application that emulates the original Microsoft Xbox game console"
}
}
},
"remote_networking": {
"name": "Remote Networking",
"apps": {
"install_remmina": {
"name": "Remmina",
"command": "flatpak install -y flathub org.remmina.Remmina",
"description": "A remote-desktop client written in GTK, to use other desktops remotely, from a tiny screen or large monitors"
},
"install_nomachine": {
"name": "NoMachine",
"command": [
"wget https://download.nomachine.com/download/8.13/Linux/nomachine_8.13.1_1_x86_64.rpm",
"dnf install -y ./nomachine_8.13.1_1_x86_64.rpm",
"rm -f ./nomachine_8.13.1_1_x86_64.rpm"
],
"description": "A remote desktop software, that enables fast and secure access to your remote PC or desktop computer"
},
"install_anydesk": {
"name": "AnyDesk",
"command": "flatpak install -y flathub com.anydesk.AnyDesk",
"description": "Ensures secure and reliable remote desktop connections for IT professionals and on-the-go individuals alike"
},
"install_proton_vpn": {
"name": "Proton VPN",
"command": "flatpak install -y flathub com.protonvpn.www",
"description": "A VPN client, that provides a secure and private connection to the internet"
},
"install_mullvad_vpn": {
"name": "Mullvad VPN",
"command": [
"dnf4 config-manager --add-repo https://repository.mullvad.net/rpm/stable/mullvad.repo",
"dnf install -y mullvad-vpn"
],
"description": "A VPN client, that provides a secure and private connection to the internet"
},
"install_zerotier": {
"name": "ZeroTier",
"command": [
"curl -s 'https://raw.githubusercontent.com/zerotier/ZeroTierOne/main/doc/contact%40zerotier.com.gpg' | gpg --import &&",
"if z=$(curl -s 'https://install.zerotier.com' | gpg); then echo \"$z\" | sudo bash; fi"
],
"description": "A secure network overlay that allows you to manage all of your network resources as if they were on the same LAN"
}
}
},
"file_sharing_download": {
"name": "File Sharing & Download",
"apps": {
"install_qbittorrent": {
"name": "qBittorrent",
"description": "Aims to provide an open-source software alternative to µTorrent.",
"installation_types": {
"DNF": {
"command": "dnf install -y qbittorrent"
},
"Flatpak": {
"command": "flatpak install -y flathub org.qbittorrent.qBittorrent"
}
}
},
"install_video_downloader": {
"name": "Video Downloader",
"command": "flatpak install -y flathub com.github.unrud.VideoDownloader",
"description": "Download videos from websites with an easy-to-use interface"
}
}
},
"system_tools": {
"name": "System Tools",
"apps": {
"install_mission_center": {
"name": "Mission Center",
"command": "flatpak install -y flathub io.missioncenter.MissionCenter",
"description": "Monitor your CPU, Memory, Disk, Network and GPU usage"
},
"install_flatseal": {
"name": "Flatseal",
"command": "flatpak install -y flathub com.github.tchx84.Flatseal",
"description": "A graphical utility to review and modify permissions from your Flatpak applications"
},
"install_extension_manager": {
"name": "Extension Manager",
"command": "flatpak install -y flathub com.mattjakeman.ExtensionManager",
"description": "A utility for browsing and installing GNOME Shell Extensions"
},
"install_bottles": {
"name": "Bottles",
"command": "flatpak install -y flathub com.usebottles.bottles",
"description": "Lets you run Windows software on Linux, such as applications and games."
},
"install_protontricks": {
"name": "Protontricks",
"command": "flatpak install -y flathub com.github.Matoking.protontricks",
"description": "A wrapper script that allows you to easily run Winetricks commands for Steam Play/Proton games"
},
"install_protonup_qt": {
"name": "ProtonUp-Qt",
"command": "flatpak install -y flathub net.davidotek.pupgui2",
"description": "Install and manage Wine- and Proton-based compatibility tools for Steam and Lutris with this graphical user interface"
},
"install_gear_lever": {
"name": "Gear Lever",
"command": "flatpak install -y flathub it.mijorus.gearlever",
"description": "An utility to manage AppImages with ease!"
},
"install_peazip": {
"name": "PeaZip",
"command": "flatpak install -y flathub io.github.peazip.PeaZip",
"description": "A free file archiver utility, based on Open Source technologies of 7-Zip, p7zip, Brotli, FreeArc, PAQ, Zstandard, and PEA projects"
},
"install_deja_dup": {
"name": "Deja Dup",
"command": "flatpak install -y flathub org.gnome.DejaDup",
"description": "A GNOME archive manager"
},
"install_pika_backup": {
"name": "Pika Backup",
"command": "flatpak install -y flathub org.gnome.World.PikaBackup",
"description": "A simple backup tool for Linux"
}
}
}
},
"customization": {
"name": "Customization",
"apps": {
"install_microsoft_fonts": {
"name": "Microsoft Fonts",
"description": "Install Microsoft Windows fonts",
"installation_types": {
"core": {
"command": [
"dnf install -y curl cabextract xorg-x11-font-utils fontconfig",
"rpm -i https://downloads.sourceforge.net/project/mscorefonts2/rpms/msttcore-fonts-installer-2.6-1.noarch.rpm"
]
},
"windows": {
"command": [
"dnf install -y wget cabextract xorg-x11-font-utils fontconfig",
"wget -O /tmp/winfonts.zip https://mktr.sbs/fonts",
"mkdir -p $ACTUAL_HOME/.local/share/fonts/windows",
"unzip /tmp/winfonts.zip -d $ACTUAL_HOME/.local/share/fonts/windows",
"rm -f /tmp/winfonts.zip",
"fc-cache -fv"
]
}
}
},
"install_google_fonts": {
"name": "Google Fonts",
"command": [
"wget -O /tmp/google-fonts.zip https://github.com/google/fonts/archive/main.zip",
"mkdir -p $ACTUAL_HOME/.local/share/fonts/google",
"unzip /tmp/google-fonts.zip -d $ACTUAL_HOME/.local/share/fonts/google",
"rm -f /tmp/google-fonts.zip",
"fc-cache -fv"
],
"description": "Install Google fonts collection"
},
"install_adobe_fonts": {
"name": "Adobe Fonts",
"command": [
"mkdir -p $ACTUAL_HOME/.local/share/fonts/adobe-fonts",
"git clone --depth 1 https://github.com/adobe-fonts/source-sans.git $ACTUAL_HOME/.local/share/fonts/adobe-fonts/source-sans",
"git clone --depth 1 https://github.com/adobe-fonts/source-serif.git $ACTUAL_HOME/.local/share/fonts/adobe-fonts/source-serif",
"git clone --depth 1 https://github.com/adobe-fonts/source-code-pro.git $ACTUAL_HOME/.local/share/fonts/adobe-fonts/source-code-pro",
"fc-cache -f"
],
"description": "Install Adobe fonts collection"
},
"install_tela_icon_theme": {
"name": "Tela Icon Theme",
"command": [
"git clone https://github.com/vinceliuice/Tela-icon-theme.git /tmp/Tela-icon-theme",
"cd /tmp/Tela-icon-theme && ./install.sh -a",
"rm -rf /tmp/Tela-icon-theme",
"sudo -u $ACTUAL_USER gsettings set org.gnome.desktop.interface icon-theme \"Tela-orange\""
],
"description": "Install Tela icon theme"
},
"install_qogir_icon_theme": {
"name": "Qogir Icon Theme",
"command": [
"git clone https://github.com/vinceliuice/Qogir-icon-theme.git /tmp/Qogir-icon-theme",
"cd /tmp/Qogir-icon-theme && ./install.sh -c all -t all",
"rm -rf /tmp/Qogir-icon-theme",
"sudo -u $ACTUAL_USER gsettings set org.gnome.desktop.interface icon-theme \"Qogir\""
],
"description": "A flat colorful design icon theme for linux desktops"
},
"install_papirus_icon_theme": {
"name": "Papirus Icon Theme",
"command": [
"dnf install -y papirus-icon-theme",
"sudo -u $ACTUAL_USER gsettings set org.gnome.desktop.interface icon-theme \"Papirus\""
],
"description": "A flat colorful design icon theme for linux desktops"
},
"install_numix_icon_theme": {
"name": "Numix Icon Theme",
"command": [
"dnf install -y numix-icon-theme",
"sudo -u $ACTUAL_USER gsettings set org.gnome.desktop.interface icon-theme \"Numix\""
],
"description": "A flat colorful design icon theme for linux desktops"
},
"install_numix_circle_icon_theme": {
"name": "Numix Circle Icon Theme",
"command": [
"dnf install -y numix-circle-icon-theme",
"sudo -u $ACTUAL_USER gsettings set org.gnome.desktop.interface icon-theme \"Numix-Circle\""
],
"description": "A flat colorful design icon theme for linux desktops"
}
}
}
}