I'm not much of a gamer but I occasionally use Discord to talk to groups of people around the world. It's good for low-latency voice.
Anyway those of you who use Discord on Linux will be familiar with the irritating way Discord forces you to update before it will run (there is no option to ignore it or skip a version).
Unfortunately, not every repository has the latest version available straight away. There is a method to manually change the version number in a config file to allow you to run Discord without updating, but you need to do this every single time a new version is released.
Not anymore!
Simply modify your .config/discord/settings.json file in your favourite text editor to include the value "SKIP_HOST_UPDATE": true and never again be bothered by this annoying limitation and you can continue to update in your own time, using your package manager.
For reference this is what my settings.json file looks like (yours will differ slightly):
{
"BACKGROUND_COLOR": "#202225",
"IS_MAXIMIZED": false,
"IS_MINIMIZED": false,
"WINDOW_BOUNDS": {
"x": 101,
"y": 412,
"width": 2542,
"height": 1676
},
"SKIP_HOST_UPDATE": true
}