fix #6 authored by about:privacy's avatar about:privacy
......@@ -38,7 +38,7 @@ If you want to keep Signal Desktop persistent, we need to set up the persistent
4. When asked whether to add the packages to the persistent storage, choose **Install every time** [as explained here](https://tails.net/doc/persistent_storage/additional_software/#index3h2)
5. Enter this line in the terminal and press Enter to **add the Flathub repository to Flatpak**:
~~~
torsocks flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
torsocks -i flatpak remote-add --user --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
~~~
......@@ -47,7 +47,7 @@ If you want to keep Signal Desktop persistent, we need to set up the persistent
0. If the Terminal is not open, choose _Applications ▸ Utilities ▸ **Terminal**_
1. Enter this line in the terminal and press Enter to **install Signal Desktop**:
~~~
torsocks flatpak install -y flathub org.signal.Signal
torsocks -i flatpak install -y flathub org.signal.Signal
~~~
_This step may take up to an hour on a slow connection._
2. Enter this line in the terminal and press Enter to **tell Signal Desktop to use Tor**:
......@@ -60,7 +60,7 @@ If you want to keep Signal Desktop persistent, we need to set up the persistent
~~~
4. If you haven't done it already while installing another Flatpak from this HowTo, create a Desktop shortcut for conveniently updating and uninstalling unused Flatpak managed applications, executing the following in the terminal:
~~~
echo -e '[Desktop Entry]\nType=Application\nName=Flatpak-Update-Uninstall-unused\nExec=bash -c "/usr/bin/torsocks /usr/bin/flatpak update -y && /usr/bin/flatpak uninstall --unused -y"\nTerminal=true\nCategories=Network\nStartupWMClass=flatpak\nKeywords=flatpak;update;uninstall;unused' | tee ~/.local/share/applications/Flatpak-Update-Uninstall-Unused.desktop
echo -e '[Desktop Entry]\nType=Application\nName=Flatpak-Update-Uninstall-unused\nExec=bash -c "/usr/bin/torsocks -i /usr/bin/flatpak update -y && /usr/bin/flatpak uninstall --unused -y"\nTerminal=true\nCategories=Network\nStartupWMClass=flatpak\nKeywords=flatpak;update;uninstall;unused' | tee ~/.local/share/applications/Flatpak-Update-Uninstall-Unused.desktop
~~~
A new application called **"Flatpak-Update-Uninstall-Unused"** is now visible in the [Activities Overview](https://tails.net/doc/first_steps/desktop/index.en.html#activities). You should run it regularly to update your Flatpak applications.
5. Close the terminal
......
......