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
{
"programs": [
{
"name": "fish",
"installation": [
{
"distro": [
"Fedora Linux",
"Nobara"
],
"steps": [
"sudo dnf install -y fish"
]
},
{
"distro": [
"Ubuntu",
"Debian GNU/Linux"
],
"steps": [
"sudo apt-get install -y software-properties-common apt-utils",
"sudo apt-add-repository ppa:fish-shell/release-3",
"sudo apt update",
"sudo apt-get install -y fish"
]
}
],
"configuration": [
{
"distro": [
"*"
],
"steps": [
"echo \"Use chsh -s /usr/bin/fish\" to change the shell"
]
}
],
"dependencies": {
"programs": []
}
}
]
}