diff --git a/build/afterPackHook.js b/build/afterPackHook.js
index 7ccd796cb..ef42cc389 100644
--- a/build/afterPackHook.js
+++ b/build/afterPackHook.js
@@ -5,14 +5,14 @@ const util = require('util');
 const renameAsync = util.promisify(fs.rename);
 const unlinkAsync = util.promisify(fs.unlink);
 
-module.exports = async function (context) {
+module.exports = async function(context) {
   // Replace the app launcher on linux only.
   if (process.platform !== 'linux') {
     return;
   }
-  const isAppImage = context.targets.find(target => target.name === 'appImage')
+  const isAppImage = context.targets.find(target => target.name === 'appImage');
   if (!isAppImage) {
-    return
+    return;
   }
   // eslint-disable-next-line no-console
   console.log('afterPack hook triggered', context);
diff --git a/build/launcher-script.sh b/build/launcher-script.sh
index d5a631815..8c4f3185b 100755
--- a/build/launcher-script.sh
+++ b/build/launcher-script.sh
@@ -1,5 +1,11 @@
 #!/usr/bin/env bash
-set -ex
+set -e
+
+# Some distributions do not have unprivileged_userns_clone disabled.
+# If that's the case, and we run an AppImage (deb is not impacted by this),
+# the app won't start unless we start it with --no-sandbox.
+# This bash script is the launcher script for AppImage only, and will at runtime check
+# if we need to add the --no-sandbox before running the AppImage itself.
 
 UNPRIVILEGED_USERNS_ENABLED=$(cat /proc/sys/kernel/unprivileged_userns_clone 2>/dev/null)
 SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
diff --git a/main.js b/main.js
index 2d4f47ed5..71b551c2b 100644
--- a/main.js
+++ b/main.js
@@ -256,6 +256,7 @@ function isVisible(window, bounds) {
 async function createWindow() {
   const { screen } = electron;
   const { minWidth, minHeight, width, height } = getWindowSize();
+
   const windowOptions = Object.assign(
     {
       show: !startInTray, // allow to start minimised in tray
diff --git a/package.json b/package.json
index 3f01f6ee9..47dc3ad74 100644
--- a/package.json
+++ b/package.json
@@ -35,7 +35,6 @@
     "test-electron": "yarn grunt test",
     "test-integration": "ELECTRON_DISABLE_SANDBOX=1 mocha --exit --full-trace --timeout 10000 ts/test/session/integration/integration_itest.js",
     "test-node": "mocha --recursive --exit --timeout 10000  test/app test/modules \"./ts/test/**/*_test.js\" libloki/test/node ",
-    "test-audric": "mocha --recursive --exit --timeout 10000 ts/test/session/unit/",
     "eslint": "eslint --cache .",
     "eslint-fix": "eslint --fix .",
     "eslint-full": "eslint .",