- install nodejs, pnpm and stuff
git clone https://github.com/signalapp/Signal-Desktop
- apply patch below
- run
pnpm run build:release
- run the signal-desktop binary in
release/linux-unpacked
(will be different if ur on mac/windows obv) - link ur session
- pin as many chats as u want !!
Last active
July 13, 2025 19:00
-
-
Save RoootTheFox/d7c079050b65d4d6332ee0be4d5feaeb to your computer and use it in GitHub Desktop.
signal desktop pin limit remove
This file contains hidden or 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
diff --git a/ts/state/ducks/conversations.ts b/ts/state/ducks/conversations.ts | |
index a6c6c7efc..1964917fc 100644 | |
--- a/ts/state/ducks/conversations.ts | |
+++ b/ts/state/ducks/conversations.ts | |
@@ -1762,7 +1762,7 @@ function setPinned( | |
new Array<string>() | |
); | |
- if (pinnedConversationIds.length >= 4) { | |
+ if (false) { | |
return { | |
type: SHOW_TOAST, | |
payload: { |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment