blob: 725b7733ec327f28263361a667cbce3e8176b188 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#+title: Discord settings.json
There really isn't much to this. I do set =SKIP_HOST_UPDATE= to =true= though to prevent it from trying to auto-update before it appears in my operating system repositories.
#+begin_src js :tangle ~/.config/discord/settings.json :mkdirp yes
{
"IS_MAXIMIZED": false,
"IS_MINIMIZED": false,
"SKIP_HOST_UPDATE": true,
"chromiumSwitches": {},
"WINDOW_BOUNDS": {
"x": 0,
"y": 0,
"width": 1060,
"height": 1870
}
}
#+end_src
|