Skip to content

Instantly share code, notes, and snippets.

@DPS0340
Last active October 5, 2023 00:34
presence.nvim on WSL 2
#!/bin/bash
set -x
if pgrep -x "socat"
then
exit 1
fi
pkill socat
rm -f /var/run/discord-ipc-0
socat UNIX-LISTEN:/var/run/discord-ipc-0,fork \
EXEC:"npiperelay.exe //./pipe/discord-ipc-0" &
sleep 2
chmod 777 /var/run/discord-ipc-0

PowerShell

scoop bucket add extras
scoop install npiperelay

WSL 2

Install presence.nvim.

Install socat.

sudo pacman -S socat

Usage

Run init script only once per session.

sudo ./init-discord-rpc.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment