- Download Slack (Linux: https://slack.com/downloads/linux)
- Download the theme from https://github.com/laCour/slack-night-mode (or use the below css file)
- Modify index.js if you like and add to /Applications/Slack.app/Contents/Resources/extracted/src/static (override the original)
- Windows:
%homepath%\AppData\Local\slack\app-3.4.2\resources\app.asar.unpacked\src\static
(use forward slashes inssb-interop.js
andindex.js
) - Linux (Debian based):
/usr/lib/slack/...
- Linux (Not Working Currently! -- Fedora - Flatpak version):
/var/lib/flatpak/app/com.slack.Slack/current/active/files/extra/lib/slack/resources/app.asar.unpacked/
- Linux (RPM/DEB verson):
/usr/lib/slack/resources/app.asar.unpacked/
- Windows:
- Modify
ssb-interop.js
to point the correct CSS file near the bottom of the script below - Modify
index.js
below (lines 8-13)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<? | |
///////////////////// | |
// slack2html | |
// by @levelsio | |
///////////////////// | |
// | |
///////////////////// | |
// WHAT DOES THIS DO? | |
///////////////////// | |
// |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from slacker import Slacker | |
import json | |
import argparse | |
import os | |
import shutil | |
import copy | |
from datetime import datetime | |
# This script finds all channels, private channels and direct messages | |
# that your user participates in, downloads the complete history for |