Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mykeels/slack-theme-cli
A CLI tool for changing Slack's desktop app colors
https://github.com/mykeels/slack-theme-cli
cli dark-mode dark-theme night-mode shell-script slack
Last synced: 7 days ago
JSON representation
A CLI tool for changing Slack's desktop app colors
- Host: GitHub
- URL: https://github.com/mykeels/slack-theme-cli
- Owner: mykeels
- Created: 2018-11-13T12:37:34.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-11-11T01:54:32.000Z (about 2 years ago)
- Last Synced: 2025-01-09T11:07:43.353Z (14 days ago)
- Topics: cli, dark-mode, dark-theme, night-mode, shell-script, slack
- Language: Shell
- Homepage:
- Size: 624 KB
- Stars: 249
- Watchers: 10
- Forks: 25
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Slack Theme CLI
A Command-Line Tool for changing Slack's desktop app colors, like
## Night Mode
![image](https://user-images.githubusercontent.com/11996508/48413960-98fac400-e749-11e8-8151-327c6d60f6d0.png)
## Midnight-Blue Mode
![image](https://user-images.githubusercontent.com/11996508/48414135-19b9c000-e74a-11e8-8aea-7dd7df8dd885.png)
## Aubergine Mode
![image](https://user-images.githubusercontent.com/11996508/48414177-3ce46f80-e74a-11e8-98fb-2f0ce5d0a5f9.png)
## How to install
To download and install, run the following code in your terminal:
### For Windows (with WSL)
```sh
curl https://raw.githubusercontent.com/mykeels/slack-theme-cli/master/slack-theme -O && bash slack-theme install && . ~/.profile
```### For Mac Users
```sh
curl https://raw.githubusercontent.com/mykeels/slack-theme-cli/master/slack-theme -O && bash slack-theme install && . ~/.bash_profile
```### For Linux Users
```sh
curl https://raw.githubusercontent.com/mykeels/slack-theme-cli/master/slack-theme -O && sudo bash ./slack-theme install && SILENT="$(source ~/.profile)"
```### For Zsh Users
If you use zsh as your shell environment, you might want to run this instead:
#### Mac (Zsh)
```sh
curl https://raw.githubusercontent.com/mykeels/slack-theme-cli/master/slack-theme -O && SLACK_THEME_SHELL_PROFILE=~/.zshrc bash slack-theme install && . ~/.zshrc
```#### Linux (Zsh)
```sh
curl https://raw.githubusercontent.com/mykeels/slack-theme-cli/master/slack-theme -O && sudo SLACK_THEME_SHELL_PROFILE=~/.zshrc bash ./slack-theme install && SILENT="$(source ~/.zshrc)"
```## How to use
See command break-down below:
```txt
SYNOPSIS
slack-theme
slack-theme day
slack-theme night
slack-theme night-mono
slack-theme aubergine
slack-theme aubergine-mono
slack-theme arc-dark
slack-theme midnight-blue
slack-theme midnight-blue-mono
slack-theme solarized-dark
slack-theme solarized-light
slack-theme install
slack-theme uninstallCOMMANDS
day
Revert to Day Modenight
Use Black CSSnight-mono
Use Night-Mono CSSaubergine
Use Aubergine CSSaubergine-mono
Use Aubergine-Mono CSSarc-dark
Use Arc-Dark CSSmidnight-blue
Use Midnight-Blue CSSmidnight-blue-mono
Use Midnight-Blue-Mono CSSsolarized-dark
Use Solarized-Dark CSSsolarized-light
Use Solarized-Light CSS
```## See Also
- [Slack Black Theme](https://github.com/widget-/slack-black-theme)
## Credits 😍
Huge thanks to:
- [Slack Night Mode](https://github.com/laCour/slack-night-mode)
- [Easy Dark Mode for Slack](https://dev.to/changoman/easy-dark-mode-for-slack-1mmn)