All Projects → alienator88 → slacky-dark

alienator88 / slacky-dark

Licence: GPL-3.0 license
Dark mode theme for Slack desktop clients

Programming Languages

CSS
56736 projects
powershell
5483 projects

Projects that are alternatives of or similar to slacky-dark

yiq
Returns white when a color is dark and black when a color is light.
Stars: ✭ 24 (+0%)
Mutual labels:  dark, black
Darkmode.js
🌓 Add a dark-mode / night-mode to your website in a few seconds
Stars: ✭ 2,339 (+9645.83%)
Mutual labels:  dark, darkmode
keep-desktop
Google Keep Dark: Desktop application for Windows, Mac and Linux with Dark Theme.
Stars: ✭ 42 (+75%)
Mutual labels:  dark, black
Aura Theme
💅 A beautiful dark theme for your favorite apps.
Stars: ✭ 159 (+562.5%)
Mutual labels:  slack, dark
DiscordNight
An actual Dark/Nightmode Theme for Discord/BetterDiscord
Stars: ✭ 86 (+258.33%)
Mutual labels:  dark, darkmode
GithubDarkTheme
Dark Theme for Github
Stars: ✭ 60 (+150%)
Mutual labels:  dark, darkmode
auto-dark-mode
IDEA plugin to automatically apply system theme settings on macOS and Windows.
Stars: ✭ 35 (+45.83%)
Mutual labels:  mode, dark
minimal-theme
Minimal theme for Emacs 24
Stars: ✭ 75 (+212.5%)
Mutual labels:  dark
slatify
Slack Notification for GitHub Actions 🔔
Stars: ✭ 132 (+450%)
Mutual labels:  slack
notify
推送通知 sdk(Bark、Chanify、钉钉群机器人、Discord、邮件、飞书群机器人、Gitter、Google Chat、iGot、Logger、Mattermost、Now Push、PushBack、Push、PushDeer、PushPlus、QQ 频道机器人、Rocket Chat、Server 酱、Showdoc Push、Slack、Telegram、Webhook、企业微信群机器人、息知、Zulip)。
Stars: ✭ 335 (+1295.83%)
Mutual labels:  slack
enhanced-slack
🌴 PoC Slack enhancer/injector
Stars: ✭ 48 (+100%)
Mutual labels:  slack
emojibot
Emojibot is a Slack bot that announces new custom emoji to a specific channel.
Stars: ✭ 17 (-29.17%)
Mutual labels:  slack
rota-slackbot
Slackbot that helps manage rotations.
Stars: ✭ 50 (+108.33%)
Mutual labels:  slack
humhub-oauth
Social OAuths built for the Social Platform HumHub
Stars: ✭ 16 (-33.33%)
Mutual labels:  slack
zoom-slack-status-updater
Update your Slack status automatically when you join a Zoom meeting.
Stars: ✭ 23 (-4.17%)
Mutual labels:  slack
Yasuf
Very simple way of controlling your Python application via Slack
Stars: ✭ 23 (-4.17%)
Mutual labels:  slack
git-slack-notify
Sends Slack notifications for new commits in Git repositories
Stars: ✭ 12 (-50%)
Mutual labels:  slack
SlackLateX
Bot that posts posts Latex pictures
Stars: ✭ 39 (+62.5%)
Mutual labels:  slack
NeonDark-Theme
An eye-catching neon theme which powerup your code editor into awesome code editor!
Stars: ✭ 265 (+1004.17%)
Mutual labels:  dark
openwhisk-slackapp
A serverless Slack app built with Slack Events API and IBM Cloud Functions
Stars: ✭ 24 (+0%)
Mutual labels:  slack

Slacky Dark

Dark mode theme for Slack desktop and web based clients

- ! This does not work with Slack 4.0 or higher. Only 3.4 and below as it requires a new process to unpack the app.asar file.
- ! I'm not maintaining this anymore as Slack now has a built-in darkmode that works well enough. 

Preview

image

Installing into Slack Desktop client

*For quick/easy install on Windows, check the **Automated Install** section at the bottom.
  1. Find the Slack application directory as follows:
  • Windows: %homepath%\AppData\Local\slack\
  • Mac: /Applications/Slack.app/Contents/
  • Linux: /usr/lib/slack/

NOTE: You can do this to the Windows Store UWP Slack app as well, but it's recommended to use the Desktop version. If you want to go the UWP route, give yourself access to the following hidden folder C:\Program Files\WindowsApps\. The instructions below can be followed in this folder pretty much the same as the ones above.

  1. Open the most recent version folder (Ex. app-3.1.0).

  2. Navigate to: \resources\app.asar.unpacked\src\static and edit the file ssb-interop.js.

  3. At the very bottom of the file, add the following code:

document.addEventListener('DOMContentLoaded', function() {
 $.ajax({
   url: 'https://raw.githubusercontent.com/alienator88/slacky-dark/master/dark.css',
   success: function(css) {
     $("<style></style>").appendTo('body').html(css);
   }
 });
});
  1. After save, restart Slack.
*Note: This will have to be done after each Slack app update as the file is overwritten.*

Installing into Slack Web Based Client

  1. Install the Stylus extension for Chrome or Firefox

  2. Apply the style from my UserStyles.org page.

Automated Install (Windows)

  1. Open powershell and run the following to allow unsigned scripts set-executionpolicy unrestricted

  2. Download SlackInstall.ps1 and run it with powershell. This will automatically add all the code to the correct file.

Enabling Developer Tools in Slack

  • Windows: Create a shortcut to Slack and change the target to

C:\Windows\System32\cmd.exe /c "SET SLACK_DEVELOPER_MENU=TRUE && start %homepath%\AppData\Local\slack\slack.exe"

Run Dev Tools with CTRL+ALT+I. (Menu > View > Developer)

Refresh Slack window with CTRL+SHIFT+R. (Menu > View > Developer)

  • Mac: Set up as an Automator program with the "program" being Run Shell Script that has the following code:
export SLACK_DEVELOPER_MENU=true

open -a /Applications/Slack.app

Run Dev Tools with ⌘ Command+⌥ Option+I. (Menu > View > Developer)

Refresh Slack window with ⌘ Command+SHIFT+R. (Menu > View > Developer)

Credits

Slack Night Mode | Slack Black Theme
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].