-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.jsonc
More file actions
54 lines (48 loc) Β· 2.7 KB
/
example.jsonc
File metadata and controls
54 lines (48 loc) Β· 2.7 KB
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
// βββββββ ββββββ ββββββ ββββββ ββ βββ βββββ
// ββββ βββββ β ββββ ββ ββββ βββ βββββ βββ βββ
// βββ ββββββ βββ β ββββ ββββββββββ ββββββββ
// ββββ ββββ β ββββ βββββββββββ ββββ ββ βββ βββ
// βββββββ ββββββββ βββββ βββββ β βββββ ββββββββββ
// βββ β ββ ββ ββ ββ β βββββ β ββ ββ ββ ββ β
// β β β β β β β β ββ β β ββ ββ β β
// β β β β β ββ β ββ β β β β
// β β ββ β β β β
// β β
//
// (Copyright (c) 2025 maaru.tan \ Marat Arzymatov. All Rights Reserved.)
// https://github.com/maarutan/decpkg
//
// ------------------------------------------------
{
// Startup
"logo_ascii" : true , // there will be a logo at the beginning.
"absolute_sync": true , // absolute installation where you clearly specify what to remove and what to install if a package is not in the list, then it will be removed.
"relative_sync": false, // Relative package installation it you can determine which packages to install but not remove, If you installed through the carrier option you will have to uninstall manually.
"noconfirm" : true , // If that's true, then the packets will settle without confirmation.
// Updates package
"update_pkg_with_install": false, // You can upgrade your system before you start installing your packages.
"update_counter" : false, // If you choose to update the system before installation you can see the number of updates.
"update_pacman" : true, // allow pacman to be updated first
"update_aur" : true, // allow Arch User Rep to be updated first
"update_flatpak": false, // allow flatpak to be updated first
// set root
"use_root" : "sudo", // To install packages you need to have super user rights in order to install them.
// aur
"aur_helper": "paru", // Better aur helper utils.
// other
"notify" : true, // If you want to be notified.
"packages": [
{
"pacman": [
// "git", // Popular utelita for version control.
// "neovim" // Best text editor.
]
},
{
"aur": [
// "peaclock", // Utelita for look clock.
// "unimatrix" // Huckers background.
]
}
]
}