The most powerful and versatile Slack client mod
TypeScript
57
220 commits
updated Sep 23, 2026
[!CAUTION] This is in early alpha and may not even be allowed by Salesforce. Expect breakage, bugs, and random crashes. The information here may be inaccurate or incomplete, but the code is open source and you can inspect it yourself.
Slick runs Slack's own app.asar inside its own Electron (with the handy BYOE acronym, bring your own electron). Slick's code runs before Slack's bundle and patches Slack from the inside, through its module system, React, and Redux, rather than by poking at the page afterwards. Slack's files are never altered, both apps keep updating, and there's no open debug port or resident watcher. This means we are able to patch Slack in a performant and safe way, while still keeping Slack's own updates and security intact.
| Feature | Slick | Taut | Rope |
|---|---|---|---|
| Actively updated | Yes | Yes | No |
| Theme support | 2 Built in themes + Monaco CSS editor | CSS editor | No |
| Plugins | 32 | 24 | 6 |
| Message Logger | Deletions + Edit history | Out of scope | No |
| Auto updates | Client and Slack update together | Slack version is pinned | Manual updating required |
| Supported platforms | All desktop platforms | Desktop + Browsers | Browser only |
| Privacy | Blocks all telemetry | Replaces Slack's telemetry with its own | Does not block telemetry |
| Code sourcing | Bundled in the app | Fetched from a remote server | Bundled in the userscript |
I encourage you to try other Slack mods, but you will find that Slick is the better choice for most!
Slick runs Slack's own code, so install the official Slack app first. Then:
macOS (the official Slack at /Applications/Slack.app, not the App Store version):
curl -fsSL https://raw.githubusercontent.com/3kh0/slick/main/install.sh | bash
Got Slack running somewhere else? Add -s -- --slack-app "/path/to/Slack.app" after bash. You can also grab the .dmg or .zip from the releases page: mac-arm64 for Apple Silicon, mac-x64 for Intel.
Windows (the standalone and Microsoft Store versions of Slack both work), in PowerShell:
irm "https://raw.githubusercontent.com/3kh0/slick/main/install.ps1" | iex
Slick is built for x64. ARM PCs run x64 Slack through emulation, so it works there, just a little slower.
Linux (x86_64): grab the AppImage, .deb or .rpm from the releases page, run nix run github:3kh0/slick, or use the installer below. Whatever floats your penguin loving boat.
curl -fsSL https://raw.githubusercontent.com/3kh0/slick/main/install-linux.sh | bash
& ([scriptblock]::Create((irm https://raw.githubusercontent.com/3kh0/slick/main/install.ps1))) -Uninstallcurl -fsSL https://raw.githubusercontent.com/3kh0/slick/main/install-linux.sh | bash -s -- --uninstall./scripts/uninstall.sh from a clone.On Windows and Linux your sign-in and settings are kept unless you add -Purge / --purge. To hand slack:// links back to the official app without uninstalling, pass -RestoreHandler / --restore-handler to the installer.
Clone the repo and run ./install.sh (macOS), ./install-linux.sh (Linux) or powershell -ExecutionPolicy Bypass -File install.ps1 (Windows). They build Slick from your checkout instead of downloading a release. Plugins live in src/plugins/<Name>/, one folder each.
Slick updates itself every few hours, and checks every download against its GitHub build attestation before installing it. To check by hand, use Slick > Check for Updates…. On macOS and standalone Windows it also keeps Slack itself up to date. The Microsoft Store, the deb and rpm packages, Flatpak and Nix update through their own package managers instead. Running through the installer again will also get you the latest version if it somehow breaks.
Themes are defined in the themes/ folder as JSON files exporting the following:
{
"name": "Super cool epic theme",
"palette": { "highlight1": { "100": "139,92,246" } }, // --dt_color-plt-<ramp>-<shade>, raw "r,g,b"
"sidebar": { "nav-bg": "#1A1525" }, // --p-team_sidebar__<key>
"vars": { "--any-css-var": "value" }, // overrides
"css": "selector { prop: val !important; }", // raw css (string or array)
}
Some people like how Slack looks by default, but you can pick one from the Slick tab in Preferences. themes/amoled.json (true black) and themes/ultraviolet.json (violet) are working examples.
Prefer to write your own CSS instead? Slick also has a "Custom CSS" option powered by Monaco at the top of the theme list.
This is under the GNU General Public License v3.0. See the LICENSE file for the legal mumbo jumbo. In short: just don't be a dick. If you're not sure what that means, see choosealicense.com/licenses/gpl-3.0. This code is provided to you for free, use at your own risk. I am not responsible for any harms due to the code here. Don't sue me.
TypeScript
92.4%
Shell
3.8%
PowerShell
2.3%
The most powerful and versatile Slack client mod
TypeScript
57
220 commits
updated Sep 23, 2026
[!CAUTION] This is in early alpha and may not even be allowed by Salesforce. Expect breakage, bugs, and random crashes. The information here may be inaccurate or incomplete, but the code is open source and you can inspect it yourself.
Slick runs Slack's own app.asar inside its own Electron (with the handy BYOE acronym, bring your own electron). Slick's code runs before Slack's bundle and patches Slack from the inside, through its module system, React, and Redux, rather than by poking at the page afterwards. Slack's files are never altered, both apps keep updating, and there's no open debug port or resident watcher. This means we are able to patch Slack in a performant and safe way, while still keeping Slack's own updates and security intact.
| Feature | Slick | Taut | Rope |
|---|---|---|---|
| Actively updated | Yes | Yes | No |
| Theme support | 2 Built in themes + Monaco CSS editor | CSS editor | No |
| Plugins | 32 | 24 | 6 |
| Message Logger | Deletions + Edit history | Out of scope | No |
| Auto updates | Client and Slack update together | Slack version is pinned | Manual updating required |
| Supported platforms | All desktop platforms | Desktop + Browsers | Browser only |
| Privacy | Blocks all telemetry | Replaces Slack's telemetry with its own | Does not block telemetry |
| Code sourcing | Bundled in the app | Fetched from a remote server | Bundled in the userscript |
I encourage you to try other Slack mods, but you will find that Slick is the better choice for most!
Slick runs Slack's own code, so install the official Slack app first. Then:
macOS (the official Slack at /Applications/Slack.app, not the App Store version):
curl -fsSL https://raw.githubusercontent.com/3kh0/slick/main/install.sh | bash
Got Slack running somewhere else? Add -s -- --slack-app "/path/to/Slack.app" after bash. You can also grab the .dmg or .zip from the releases page: mac-arm64 for Apple Silicon, mac-x64 for Intel.
Windows (the standalone and Microsoft Store versions of Slack both work), in PowerShell:
irm "https://raw.githubusercontent.com/3kh0/slick/main/install.ps1" | iex
Slick is built for x64. ARM PCs run x64 Slack through emulation, so it works there, just a little slower.
Linux (x86_64): grab the AppImage, .deb or .rpm from the releases page, run nix run github:3kh0/slick, or use the installer below. Whatever floats your penguin loving boat.
curl -fsSL https://raw.githubusercontent.com/3kh0/slick/main/install-linux.sh | bash
& ([scriptblock]::Create((irm https://raw.githubusercontent.com/3kh0/slick/main/install.ps1))) -Uninstallcurl -fsSL https://raw.githubusercontent.com/3kh0/slick/main/install-linux.sh | bash -s -- --uninstall./scripts/uninstall.sh from a clone.On Windows and Linux your sign-in and settings are kept unless you add -Purge / --purge. To hand slack:// links back to the official app without uninstalling, pass -RestoreHandler / --restore-handler to the installer.
Clone the repo and run ./install.sh (macOS), ./install-linux.sh (Linux) or powershell -ExecutionPolicy Bypass -File install.ps1 (Windows). They build Slick from your checkout instead of downloading a release. Plugins live in src/plugins/<Name>/, one folder each.
Slick updates itself every few hours, and checks every download against its GitHub build attestation before installing it. To check by hand, use Slick > Check for Updates…. On macOS and standalone Windows it also keeps Slack itself up to date. The Microsoft Store, the deb and rpm packages, Flatpak and Nix update through their own package managers instead. Running through the installer again will also get you the latest version if it somehow breaks.
Themes are defined in the themes/ folder as JSON files exporting the following:
{
"name": "Super cool epic theme",
"palette": { "highlight1": { "100": "139,92,246" } }, // --dt_color-plt-<ramp>-<shade>, raw "r,g,b"
"sidebar": { "nav-bg": "#1A1525" }, // --p-team_sidebar__<key>
"vars": { "--any-css-var": "value" }, // overrides
"css": "selector { prop: val !important; }", // raw css (string or array)
}
Some people like how Slack looks by default, but you can pick one from the Slick tab in Preferences. themes/amoled.json (true black) and themes/ultraviolet.json (violet) are working examples.
Prefer to write your own CSS instead? Slick also has a "Custom CSS" option powered by Monaco at the top of the theme list.
This is under the GNU General Public License v3.0. See the LICENSE file for the legal mumbo jumbo. In short: just don't be a dick. If you're not sure what that means, see choosealicense.com/licenses/gpl-3.0. This code is provided to you for free, use at your own risk. I am not responsible for any harms due to the code here. Don't sue me.
TypeScript
92.4%
Shell
3.8%
PowerShell
2.3%