diff --git a/joinmarket/joinmarket_desktop_to_blitz.md b/joinmarket/joinmarket_desktop_to_blitz.md
new file mode 100644
index 0000000..c9803ce
--- /dev/null
+++ b/joinmarket/joinmarket_desktop_to_blitz.md
@@ -0,0 +1,209 @@
+
+
+
+
+# Connect JoinMarket running on a Linux desktop to a remote node
+
+In order to use the JoinMarketQT GUI (and other scripts) it needs to connect to a Bitcoin Core node.
+A pruned node with the wallet enabled will do and txindex is not required.
+
+In this guide will show how to connect to a RaspiBlitz.
+
+The benefit is that there is no need to run another Bitcoin node on the desktop and still can use the JoinMarket-QT GUI and other scripts.
+
+Tested with:
+* Joinmarket 0.6.1
+* Ubuntu 18.04 desktop
+* RaspiBlitz 1.3 and 1.4
+
+## LAN connection
+
+### In the node terminal
+#### Allow remote RPC connections on the LAN
+This can be skipped if you connect through Tor (see [below](#tor-connection))
+
+1) #### Edit the bitcoin.conf:
+ `$ sudo nano /mnt/hdd/bitcoin/bitcoin.conf`
+
+ Change the values (edit to your local subnet):
+ ```
+ #rpcallowip=127.0.0.1
+ #rpcbind=127.0.01:8332
+ rpcallowip=192.168.1.0/24
+ rpcbind=0.0.0.0
+ ```
+2) #### Restart Bitcoin Core:
+ `$ sudo systemctl restart bitcoind`
+
+3) #### The firewall needs to be opened to allow the RPC connection from LAN
+ (edit to your local subnet):
+ `sudo ufw allow from 192.168.1.0/24 to any port 8332`
+ `ufw enable`
+
+### On the Linux desktop
+
+1) #### Install Joinmarket from the source code:
+
+ ```bash
+ git clone https://github.com/JoinMarket-Org/joinmarket-clientserver.git
+ cd joinmarket-clientserver
+ # latest release: https://github.com/JoinMarket-Org/joinmarket-clientserver/releases
+ git reset --hard v0.6.1
+
+ ./install.sh --with-qt
+ ```
+
+2) #### Activate the python virtual environment:
+ `$ source jmvenv/bin/activate`
+
+3) #### Start the JoinMarket-QT GUI (or an other script) to generate the config file.
+ `(jmvenv) $ cd scripts`
+ `(jmvenv) $ python joinmarket-qt.py`
+
+4) #### Edit the joinmarket.cfg:
+ `$ nano ./scripts/joinmarket.cfg`
+
+ Fill in the values in CAPITALs:
+
+ ```
+ [BLOCKCHAIN]
+ #options: bitcoin-rpc, regtest
+ blockchain_source = bitcoin-rpc
+ network = mainnet
+ rpc_host = LAN_IP_OF_THE_REMOTE_NODE
+ rpc_port = 8332
+ rpc_user = RPC_USERNAME_OF_THE_REMOTE_NODE (AS IN BITCOIN.CONF)
+ rpc_password = RPC_PASSWORD_OF_THE_REMOTE_NODE (AS IN BITCOIN.CONF)
+ ```
+
+5) #### Copy, generate or restore a JoinMarket wallet
+
+ If you want use the wallet used on your node already copy it over with scp (fill in the parts written in CAPITALs):
+ ```
+ $ scp admin@REMOTE_NODE_IP:~/joinmarket-clientserver/scripts/wallets/WALLET.jmdat ./wallets/
+ ```
+ You can use the `Wallet` menu of JoinMarketQT to generate or restore a wallet
+
+5) #### Start the JoinMarket-QT GUI (or an other script) with:
+ `(jmvenv) $ python joinmarket-qt.py`
+
+## Tor connection
+
+### On the node - activate Tor and create a Hidden Service
+#### Create a Hidden Service to forward the bitcoin RPC port
+
+1) #### Open the Tor configuration file:
+`$ sudo nano /etc/tor/torrc`
+
+2) #### Insert the lines:
+ ```bash
+ # Hidden Service v3 for bitcoinrpc
+ HiddenServiceDir /mnt/hdd/tor/bitcoinrpc
+ HiddenServiceVersion 3
+ HiddenServicePort 8332 127.0.0.1:8332
+ ```
+3) #### Restart Tor:
+`$ sudo systemctl restart tor`
+
+4) #### Take note of the Tor Hidden Service address:
+`$ sudo cat /mnt/hdd/tor/bitcoinrpc/hostname`
+
+### On the Linux desktop - use `torify`
+
+1) #### Install JoinMarket and copy, generate or restore a JoinMarket wallet as decribed [above](#copy-generate-or-restore-a-JoinMarket-wallet) for the LAN connection.
+
+2) #### Install Tor (if not running already):
+ `$ sudo apt update`
+ `$ sudo apt install tor`
+
+3) #### Edit the joinmarket.cfg:
+ `$ nano ./scripts/joinmarket.cfg`
+
+ Fill in the values in CAPITALs:
+
+ ```
+ [BLOCKCHAIN]
+ #options: bitcoin-rpc, regtest
+ blockchain_source = bitcoin-rpc
+ network = mainnet
+ rpc_host = HIDDEN_SERVICE_ADDRESS_FOR_BITCOINRPC.onion
+ rpc_port = 8332
+ rpc_user = RPC_USERNAME_OF_THE_REMOTE_NODE (AS IN BITCOIN.CONF)
+ rpc_password = RPC_PASSWORD_OF_THE_REMOTE_NODE (AS IN BITCOIN.CONF)
+ ```
+
+4) #### activate the python virtual environment:
+ `$ source jmvenv/bin/activate`
+
+5) #### Start the JoinMarket-QT GUI (or other scripts) with:
+ `(jmvenv) $ cd scripts`
+ `(jmvenv) $ torify python joinmarket-qt.py`
+
+## JoinMarket-QT icon/shortcut on the Linux desktop
+
+The following instructions by @k3tan will create an icon for easy access.
+Tested on Ubuntu.
+
+1) #### Create an environment script
+
+ ```$ sudo nano ~/joinmarket.sh```
+
+ In the blank file, copy the following:
+
+ ```
+ #!/bin/bash
+
+ cd ~/joinmarket-clientserver && source jmvenv/bin/activate && cd scripts
+ python joinmarket-qt.py
+ ```
+
+ Save the file and make it executable by running the following command:
+
+ ```$ sudo chmod a+x ~/joinmarket.sh```
+
+2) #### Download the icon and place it into the pixmaps folder:
+
+ ```
+ $ sudo wget -P /usr/share/pixmaps https://raw.githubusercontent.com/openoms/bitcoin-tutorials/master/images/joinmarket_logo.png
+ ```
+
+3) #### Create desktop file
+
+ ```$ sudo nano ~/JoinMarket.desktop```
+
+ In the blank file, copy the following:
+
+ ```
+ !/usr/bin/env xdg-open
+ [Desktop Entry]
+ Version=1.0
+ Type=Application
+ Terminal=false
+ Name[en_AU]=JoinMarket
+ Exec=/home/$USER/joinmarket.sh
+ Name=JoinMarket
+ Icon=joinmarket_logo
+ ```
+
+ Update the ```Exec=``` line with your username
+
+4) #### Install the desktop file
+
+ ```$ sudo desktop-file-install ~/JoinMarket.desktop```
+
+ Open up Applications and search for JoinMarket - test to see if it works.
+
+---
+
+## Resources:
+
+* Walkthrough for running Joinmarket-Qt to do coinjoins (single or tumbler):
+
+
+* [JoinMarket on the RaspiBlitz guide](README.md)
+
+* Video demonstration of using the JoinMarket-Qt GUI by @waxwing:
+
+
+* Video about how to setup and use JoinMarket on the Ubuntu Node Box by @k3tan:
+
\ No newline at end of file