endcord is a third-party feature rich Discord client, running entirely in terminal.
It is built with python and ncurses library, to deliver lightweight yet feature rich experience.
Discord token is required in order to run endcord! see Token.
More screenshots.
- Extremely low CPU and and RAM usage (values greatly depend on number of servers and channels)
- View images, gifs, videos and stickers in terminal with ASCII art (
Ctrl+V
) - Integrated RPC (only Rich Presence)
- Desktop notifications
- Download/upload attachments (
Ctrl+W/U
) - Select message and: reply (
Ctrl+R
), edit (Ctrl+E
), delete (Ctrl+D
), go to replied (Ctrl+G
) - Toggle reply ping (
Ctrl+P
) - View user prfile (
Alt+P
) - Channel tree (Server/DM/Group)
- Correct channel order
- Dont show hidden channels
- Show muted chanels as gray
- Show unread channels as bold
- Show channels with mention as red
- Navigate tree (
Ctrl+Up/Down
) - Expand categories and servers, enter channel (
Ctrl+Space
) - DMs in separate drop-down, show DM status
- Forums, channel threads
- View channel and server info (
Alt+I
)
- Show reactions, replied message, forwarded message
- Show embeds, attachment types and links, code blocks
- Spellchecking
- Undo/Redo in input line (
Alt+Z
,Alt+Shift+Z
) - Open link in browser (
Ctrl+O
) - Infinite chat scrolling
- Keep deleted messages (OFF by default)
- Highlight messages with mentions
- Show who is typing
- Send 'typing' (ON by default)
- Insertable newline in input line (
Ctr+N
) - Copy message text to clipboard (
Ctrl+H
) - Hide or mask blocked/ignored users
- No ghost pings (when client is running)
- Role colors in chat
- Date separtors in chat
- Partial markdown support (underline, bold, italic, spoiler, quote)
- Sending emoji support with
:emoji:
(only default) - Theming
- Customizable status, title and prompt lines
- Customizable chat lines (message, newline, reaction, reply)
- Customizable colors, ASCII art
- Automatic recovery on network failure
- Remember last open channel and tree state
- Resizable
- Show discord emoji as
:emoji_name:
- Show mentions as
@username
,@role
,@>channel_name
- Quit on
Ctrl+C
Settings, log, state and themes location:
- On linux:
~/.config/endcord/
or$XDG_DATA_HOME/endcord/
- On windows:
%USERPROFILE%/AppData/Local/endcord/
- On mac:
~/Library/Application Support/endcord/
Run endcord -h
or endcord --help
to see possible command arguments.
Custom config path can be provided with -c [PATH_TO_CONFIG]
flag.
If config is not found at that path, default will be written.
There can be missing entries in config, they will be filled with defaults.
Debug mode can be enabled with -d
flag.
It will cause extra messages to be written to log file.
Endcord will periodically write to drive and log file will quickly grow in size.
Log is overwritten on each run.
Token is used to access Discord through your account without logging-in.
It is required to to use endcord.
After obtaining token, you can either:
- Pass token to endcord as command argument:
endcord -t [YOUR_TOKEN]
- Save token in config - recommended
Keybindings are configured in separate section in config.ini
.
Key combinations are saved as integer codes, that can be generated by running endcord --keybinding
.
Alt+Key
codes are saved as string with format: "ALT+[KEY]"
, where [KEY]
is integer.
Note that some codes can be different across systems.
Ctrl+Shift+Key
combinations are not supported by most terminal emulators, but Alt+Shift+Key
are.
Default "expand categories and servers" is rebound to Ctrl+A
on windows.
See FAQ for more info on obtaining your Discord token.
Go to configuration.
Navigating messages - Arrow-Up/Down
Navigating channel tree - Ctrl+Up/Down
Insert newline - Ctrl+N
Scroll back to bottom - Ctrl+H
Expand selected categories and servers - Ctrl+Space
Enter selected channel - Ctrl+Space
Reply to selected message - Ctrl+R
Edit selected message - Ctrl+E
Delete selected message - Ctrl+D
Toggle reply ping when replying - Ctrl+P
Go to replied message - Ctrl+G
View user profile (selected message) - Alt+P
View channel info (selected in tree) - Alt+I
Copy message to clipboard - Ctrl+B
Open link in browser - Ctrl+O
Download attachment - Ctrl+W
View attached media (image, gif, video) - Ctrl+V
Upload attachments - Ctrl+U
Cancel all downloads/uploads - Ctrl+X
Cancel selected attachment - Ctrl+K
Reveal one spoiler in selected messages - Ctrl+T
Paste text - terminal paste, usually Ctrl+Shift+V
Undo input line - Alt+Z
Redo input line - Alt+Shift+Z
Un/collapse channel with threads in tree - Alt+T
Join/leave selected thread in tree - Alt+J
Open selected post in forum - Enter
Open and join selected post in forum - Alt+K
Locally hide channel - Alt+H
If UI ever gets messed up, redraw it - Ctrl+L
Cancel action, leave media viewer - Escape
Quit - Ctrl+C
If tree object has >
befor the object name, it means it has sub-objects (its drop-down).
Objects are un/collapsed with Ctrl+Space
. Channels with threads are un/collapsed on Alt+T
.
Channel with threads are collapsed by default.
Thread can be joined or left (toggle) on Alt+J
.
Newline can be added to input line by pressing Ctrl+N
.
To keep text in one line it is represented as 
only in input line.
When message is sent, it will be split in newlines properly.
When last message in chat buffer is selected, buffer will be extended with older messages.
If number of messages in buffer exceeds limit_chat_buffer
value in config, chat will be trimmed on the opposite side.
If latest message is missing, then buffer can be extended with newer messages by selecting first message in buffer.
Downloading and opening links have similar mechanism:
If there is one item, download will start immediately / open in browser.
If there are multiple items, it will prompt for a single number indicating what item.
Items can be:
- Links and attachments for 'open in browser'
- Only attachments for 'download'.
Links are counted first. Items are counted from start to end of the message, in order.
Downloads are parallel.Ctrl+X
will cancel ALL downloads and attachments, with a confirmation prompt.
Uploading is initiated by pressing Ctrl+U
. Previously typed content will be cached.
Type path to file that should be uploaded and press enter. Cached content will be restored.
Wait until file is uploaded and then send the message. Mutliple files can be added this way.
Path can be absolute or relative, and has autocomplete on tab
key.
If file size exceeds discord's limit it will not be added to the sent message.
Attachments can be navigated with Ctrl+Left/Right
in extra line (above status line).
Ctrl+X
will cancel ALL downloads and attachments, with a confirmation prompt.
Ctrl+K
will cancel selected attachment (and stop upload) and remove it from attachments list.
To add default emoji in message just type its name or alias, like this: :thumbs_up:
For now, there is no emoji assist, but it is planned.
Emoji names can be found here and aliases here.
For now RPC is only implemented for Linux, it is automatically disabled on other platforms.
And only supports Rich Presence over IPC, which means no process detection, subscriptions, join requests, lobby, etc.
Because of this, some apps may not connect, misbehave or even error. If that happen, disable RPC in config.
Usually RPC app must be started after RPC server (endcord).
More info about whats going on can be found in log, when endcord is in debug mode.
Forums in tree can be opened just like a channel (Ctrl+Space
). It will load only the most recent posts (unarchived) and show them in chat buffer.
Select post and Enter
to open it, or Alt+K
to open and join.
Posts are treated same as threads in channel tree, but only participated posts will be shown.
If there are no posts in the forum (this will happen when switching to forum in never opened server), switch to some channel in the same server, (client must subscribe to some channel so discord can send thread list sync).
Some channels are not hidden in endcord, even tho they are in official client. more info on why in FAQ.
Also some servers my not provide an ability to hide channels.
Thats why in endcord channels can be locally hidden, by selecting channel in channel tree and pressing Alt+H
.
Locally hidden channels can be restored by removing them in hidden_channels.json
, see Configuration for path.
Custom theme path can be provided with -c [PATH_TO_THEME]
flag or in config.ini
.
Theme can also be changed in config.ini
under section [theme]
.
Loading order: argument theme -> config.ini
theme -> builtin default theme. There can be missing settings.
If theme is not found at provided path, default theme will be written to it.
If only file name is provided, without .ini
extension, theme will be searched in Themes
directory, see Configuration for path.
There are 2 default themes: default
and better_lines
, they are assumed to be drawn on dark background (preferably black).
Very large number of image and video formats are supported thanks to pillow and PyAV.
All the visual media is converted to ASCII art that can be additionally configured in theme.
Audio is also played along with the video.
"endcord-lite", without media support, can be built by not specifying --lite
flag to build script. Lite version is significantly smaller in size.
- From AUR:
yay -S endcord
- full version with media support, larger executableyay -S endcord-lite
- lite version without media support
- Build, then copy built executable to system:
sudo cp dist/endcord /usr/local/sbin/
Optional dependencies:
xclip
- Clipboard support on X11wl-clipboard
- Clipboard support on Waylandaspell
- Spellchecking
Install windows terminal or cmder, or any other modern terminal.
Build, standalone executable can be found in ./dist/endcord.exe
.
Run exe from wt or cmder.
Optional dependency, for spellchecking: aspell. It is expected to be installed in C:\Program Files (x86)\
. If it is not, please open an issue and provide the actual install path. Alongside with base aspell, dictionary must be installed, even en_US.
Emoji and Ctrl+key support depends on terminal.
Build, standalone executable can be found in ./dist/
.
Optional dependency, for spellchecking: aspell. Can be installed with: brew aspell
.
Never tested on macOS. Feedback is welcome.
Warning
Using third-party client is against Discord's Terms of Service and may cause your account to be banned!
Use endcord at your own risk!
- Clone this repository:
git clone https://github.com/mzivic7/endcord.git
- Install pipenv
cd endcord
- Setup virtual environment:
pipenv install
- run build script
- to build endcord:
pipenv run python build.py --build
- to build endcord-lite:
pipenv run python build.py --build --lite
- to build endcord:
- Install Python 3.13 or later
- Install pipenv
pip install pipenv
- Clone this repository, unzip it
- Open terminal, cd to unzipped folder
- Setup virtual environment:
pipenv install
- run build script
- to build endcord:
pipenv run python build.py --prepare --build
- to build endcord-lite:
pipenv run python build.py --prepare --build --lite
- to build endcord:
- Install Python 3.13 or later
- Install pipenv
pip install pipenv
- Clone this repository, unzip it
- Open terminal, cd to unzipped folder
- Setup virtual environment:
pipenv install
- run build script
- to build endcord:
pipenv run python build.py --build
- to build endcord-lite:
pipenv run python build.py --build --lite
- to build endcord:
- Open Discord in browser.
- Open developer tools (
F12
orCtrl+Shift+I
on Chrome and Firefox). - Go to the
Network
tab then refresh the page. - In the 'Filter URLs' text box, search
discord.com/api
. - Click on any filtered entry. On the right side, switch to
Header
tab search for theauthorization
. - Copy value of
Authorization: ...
found underRequest Headers
(right click -> Copy Value) - This is your discord token. Do not share it!
- MOST IMPORTANT: Do not use endcord to perform any out-of-ordinary actions (ie. self-bots). Discord has spam heuristic algorithm for catching self-bots, third party clients can sometimes trip it.
- Discord REST API is called each time client is started, when channel is changed and message is seen and sent. It would be best to not abuse these actions in order to reduce REST API calls.
- Do not leave endcord on busy channels running in background.
- Do not repeatedly view user profiles.
- Sending ack (when channel is marked as seen) is throttled by endcord to 5s (configurable).
- Disable
rpc_external
in config - it calls REST API for fetching external resources for Rich Presence. - Typing status and Rich Presence are using WebSocket so disabling it will make no difference.
You can write to Discord TNS team: https://dis.gd/request.
If you did something particular with endcord that caused the ban, open an issue describing what that is. Maybe that can be prevented or other users can be warned.
Anonymized data that might help in debugging is saved in Debug
directory, see Configuration for path.
All channel and server names, topics, descriptions are replaced. All channel and server IDs are added to random number and hashed, so they are irreversible changed, and will be different on each run.
This is an issue with cpython ncurses API. It is ignoring color prirs with ID larger than 255. This means only 255 color pairs can actually be used. Only role colors can reach this limit, because they are initialized last. This will be updated in endcord when cpython issue is resolved.
Some channels are not hidden
This is because the actual way of getting hidden channels is unknown. Only the channels that are user-hidden (in Discord: right click on channel -> remove from channel list) and have no modified notification settings, will not be hidden in endcord.
To hide it, either give it some notification setting (eg. mute it), or locally set it as hidden: Hiding channels.
Same reason as above, trying to save some color pair IDs until curses bug is fixed.
If emoji are drawn as empty box or simmilar, it means emoji are not supported by this terminal. In that case, enable emoji_as_text
in config.ini
.
If the message says it "cannot be opened", then this is lottie sticker. These stickers have special vector way of drawing animations and will not be supported.
The client will refuse to send message in newly-created DM channels. This measure is to prevent triggering discords spam filter.
Linux tty by default supports only 16 colors. Endcord will fail to initialize colors and not start.
However endcord can be run inside fbterm fbterm, adding support for 256 colors.
Follow fbterm setup instructions, then set environment variable: export TERM=fbterm
and run endcord.
Note: Ctrl+Up/Down/Left/Right
have different key codes in tty.
Connecting to Spacebar or any other discord-like instance can be configured in config.ini
. Set custom_host =
to prefered host domain, like spacebar.chat
. Set to None
to use default host (discord.com
).
Then endcord will connect only to that domain instead discord. Token is diffeerent on different hosts!
Note that using custom host is completely untested, and support depends on how differnet the api is to original discord api, and may crash at any time. Further, each host may have different spam filters, so use at your own risk still applies.
Go to TODO.
Following features have significant risk of triggering discords spam filter, and may cause account to be limited or even banned.
Therefore they will NOT be implemented in endcord.
Features: sending friend request, opening new DM.