Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
signal [2018/10/25 15:02] – created tmaier | signal [2024/07/14 22:03] (current) – [Windows] tmaier | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Signal ====== | + | ====== Signal |
- | ===== Signal with Proxy ===== | + | ===== Using a Proxy ===== |
+ | ==== Windows | ||
Batch file on Desktop: | Batch file on Desktop: | ||
- | <code batch Signal.bat> | + | <code batch %UserProfile%\Desktop\Signal.bat> |
@echo off | @echo off | ||
- | set HTTP_PROXY=http:// | + | set HTTP_PROXY=http:// |
- | set HTTPS_PROXY=http:// | + | set HTTPS_PROXY=http:// |
start %LOCALAPPDATA%\Programs\signal-desktop\Signal.exe | start %LOCALAPPDATA%\Programs\signal-desktop\Signal.exe | ||
</ | </ | ||
Shortcut on Desktop with destination: | Shortcut on Desktop with destination: | ||
- | '' | + | '' |
+ | |||
+ | ==== Linux ==== | ||
+ | <code ini / | ||
+ | [Desktop Entry] | ||
+ | Name=Signal | ||
+ | Comment=Private messaging from your desktop | ||
+ | Exec="/ | ||
+ | Terminal=false | ||
+ | Type=Application | ||
+ | Icon=signal-desktop | ||
+ | StartupWMClass=Signal | ||
+ | Categories=Network; | ||
+ | desktop entry | ||
+ | </ | ||
+ | <code bash / | ||
+ | #!/bin/sh | ||
+ | |||
+ | export http_proxy=http://< | ||
+ | export https_proxy=http://< | ||
+ | / | ||
+ | </ | ||
+ | |||
+ | ===== Multiple User Profiles ===== | ||
+ | ====== Linux ====== | ||
+ | |||
+ | <code ini / | ||
+ | [Desktop Entry] | ||
+ | Type=Application | ||
+ | Name=Signal Priv | ||
+ | Comment=Signal - Private Messenger | ||
+ | Comment[de]=Signal - Sicherer Messenger | ||
+ | Icon=signal-desktop | ||
+ | Exec=signal-desktop --user-data-dir=/ | ||
+ | Terminal=false | ||
+ | Categories=Network; | ||
+ | StartupWMClass=Signal | ||
+ | MimeType=x-scheme-handler/ | ||
+ | Keywords=sgnl; | ||
+ | X-GNOME-UsesNotifications=true | ||
+ | </ | ||
+ | |||
+ | ====== Windows ====== | ||
+ | Create shortcut, set following target: '' |