From c39140c48aaa9b45cba7b8f5b2c654b42d7876c4 Mon Sep 17 00:00:00 2001 From: Anastassios Martakos Date: Mon, 16 Jul 2018 00:29:45 +0200 Subject: [PATCH 1/2] Describe how to open developer console on windows --- readme.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/readme.md b/readme.md index f0d9ac8..ee4c519 100644 --- a/readme.md +++ b/readme.md @@ -174,7 +174,17 @@ Instead of launching Slack normally, you'll need to enable developer mode to be * Linux: (todo) -* Windows: (todo) +* Windows (PowerShell): + +```powershell +# Set environment variable +[System.Environment]::SetEnvironmentVariable('SLACK_DEVELOPER_MENU', 'true', 'Process') + +# Launch Slack (replace x.y.z with the latest version) +& $env:LOCALAPPDATA\slack\app-x.y.z\slack.exe + +# Open developer console by pressing: Ctrl + Alt + I +``` # License From e278e9d7becff1352d9e73e69f8ee79e08f98c09 Mon Sep 17 00:00:00 2001 From: Anastassios Martakos Date: Fri, 20 Jul 2018 23:23:57 +0200 Subject: [PATCH 2/2] Add description on how to open developer console on linux --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index ee4c519..ebe8186 100644 --- a/readme.md +++ b/readme.md @@ -172,7 +172,7 @@ Instead of launching Slack normally, you'll need to enable developer mode to be * Mac: `export SLACK_DEVELOPER_MENU=true; open -a /Applications/Slack.app` -* Linux: (todo) +* Linux: `export SLACK_DEVELOPER_MENU=true && /usr/bin/slack` * Windows (PowerShell):