-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.json
169 lines (169 loc) · 4.37 KB
/
config.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
[
{
"name": "Extension Manager",
"url": "https://flathub.org/apps/details/com.mattjakeman.ExtensionManager",
"install": {
"fedora ubuntu": "sudo flatpak install flathub com.mattjakeman.ExtensionManager -y --noninteractive"
}
},
{
"name": "Github Desktop",
"url": "https://github.com/shiftkey/desktop",
"install": {
"fedora ubuntu": "sudo flatpak install flathub io.github.shiftey.Desktop -y --noninteractive"
},
"files": {
"include": [
"~/.var/app/io.github.shiftey.Desktop/data/recently-used.xbel",
"~/.var/app/io.github.shiftey.Desktop/config"
]
}
},
{
"name": "Meld Merge",
"url": "https://meldmerge.org/",
"install": {
"fedora": "sudo dnf install meld -y",
"ubuntu": "sudo apt-get install meld -y"
},
"dconf": {
"schema_path": "/org/gnome/meld/",
"file": "meld.conf"
}
},
{
"name": "Google Chrome",
"url": "https://www.google.com/chrome/",
"install": {
"fedora": "sudo dnf install google-chrome-stable -y",
"ubuntu": "sudo apt-get install google-chrome-stable -y"
}
},
{
"name": "Visual Studio Code",
"url": "https://code.visualstudio.com/",
"install": {
"fedora": "sudo dnf install code -y",
"ubuntu": "sudo apt-get install code -y"
},
"files": {
"include": ["~/.config/Code", "~/.config/Code/User"],
"exclude": [
"~/.config/Code/*Storage*",
"~/.config/Code/*Cache*",
"~/.config/Code/*Crash*",
"~/.config/Code/*Service*",
"~/.config/Code/logs"
]
}
},
{
"name": "IntelliJ IDEA Ultimate",
"url": "https://www.jetbrains.com/idea/",
"install": {
"fedora ubuntu": "../private/scripts/apps/jidea-install.sh"
},
"files": {
"include": ["~/.config/JetBrains"]
}
},
{
"name": "Double Commander",
"url": "https://doublecmd.sourceforge.io/",
"install": {
"fedora": "sudo dnf install doublecmd-gtk -y",
"ubuntu": "sudo apt-get install doublecmd-gtk -y"
},
"files": {
"include": ["~/.config/doublecmd"],
"exclude": [
"~/.config/doublecmd/doublecmd.err",
"~/.config/doublecmd/history.xml",
"~/.config/doublecmd/pixmaps.cache"
]
}
},
{
"name": "Midnight Commander",
"url": "https://midnight-commander.org/",
"install": {
"fedora": "sudo dnf install mc -y",
"ubuntu": "sudo apt-get install mc -y"
}
},
{
"name": "dconf Editor",
"url": "https://wiki.gnome.org/Apps/DconfEditor",
"install": {
"fedora": "sudo dnf install dconf-editor -y",
"ubuntu": "sudo apt-get install dconf-editor -y"
}
},
{
"name": "dnfdragora",
"url": "https://github.com/manatools/dnfdragora",
"install": {
"fedora": "sudo dnf install dnfdragora -y"
}
},
{
"name": "Synaptic Package Manager",
"url": "https://www.nongnu.org/synaptic/",
"install": {
"ubuntu": "sudo apt-get install synaptic -y"
}
},
{
"name": "Gnome Tweaks",
"url": "https://wiki.gnome.org/Apps/Tweaks",
"install": {
"fedora": "sudo dnf install gnome-tweaks -y",
"ubuntu": "sudo apt-get install gnome-tweaks -y"
}
},
{
"name": "Gnome Weather",
"url": "https://wiki.gnome.org/Apps/Weather",
"install": {
"ubuntu": "sudo apt-get install gnome-weather -y"
},
"dconf": {
"schema_path": "/org/gnome/Weather/",
"file": "gnome-weather.conf"
}
},
{
"name": "SMPlayer",
"url": "https://www.smplayer.info/",
"install": {
"fedora": "sudo dnf install smplayer -y",
"ubuntu": "sudo apt-get install smplayer -y"
},
"files": {
"include": ["~/.config/smplayer"],
"exclude": ["~/.config/smplayer/smplayer_files.ini", "~/.config/smplayer/file_settings"]
}
},
{
"name": "Skype",
"url": "https://www.skype.com/",
"install": {
"fedora": "sudo dnf install skypeforlinux -y",
"ubuntu": "sudo apt-get install skypeforlinux -y"
},
"files": {
"include": ["~/.config/skypeforlinux/settings.json"]
}
},
{
"name": "Timeshift",
"url": "https://github.com/teejee2008/timeshift",
"install": {
"fedora": "sudo dnf install timeshift -y",
"ubuntu": "sudo apt-get install timeshift -y"
},
"files": {
"include": ["/etc/timeshift/timeshift.json"]
}
}
]