Kali Linux Install Messenger: Difference between revisions
From WikiMLT
m (Spas moved page Kali Linux Install Messenger client Caprine to Kali Linux Install Messenger without leaving a redirect) |
m (→References) |
||
Line 1: | Line 1: | ||
<noinclude><!--[[Category:Linux_Desktop|?]]-->{{ContentArticleHeader/Linux_Desktop}}</noinclude> | <noinclude><!--[[Category:Linux_Desktop|?]]-->{{ContentArticleHeader/Linux_Desktop}}</noinclude> | ||
Messenger for Desktop is not longer available option. The good news is There is another nice app named '''Caprine''' which is an elegant Facebook Messenger desktop app. | |||
Caprine is an unofficial and privacy-focused Facebook Messenger app with many useful features. Caprine is feature complete. However, we welcome contributions for improvements and bug fixes. | |||
== Download and install Caprine == | |||
Caprine is available as <code>.AppImage</code> or <code>.deb</code> file and many other packages. I prefer to use the <code>.deb</code> package. At the time I'm writing this guide, its current version is <code>[https://github.com/sindresorhus/caprine/releases/tag/v2.56.0 2.56.0]</code>.<syntaxhighlight lang="shell" line="1"> | |||
wget https://github.com/sindresorhus/caprine/releases/download/v2.56.0/caprine_2.56.0_amd64.deb -O ~/Downloads/caprine.deb | |||
sudo apt install ~/Downloads/caprine.deb | |||
</syntaxhighlight> | |||
== Add Shortcut on the Desktop == | |||
<syntaxhighlight lang="shell" line="1"> | |||
cp /usr/share/applications/caprine.desktop ~/Desktop | |||
</syntaxhighlight>Once the above command is executed, right click on the new icon and choice on the <code>Allow Launching</code> option. | |||
== Add to Autostart Applications == | |||
<syntaxhighlight lang="shell" line="1"> | |||
cp /usr/share/applications/caprine.desktop ~/.config/autostart/ | |||
</syntaxhighlight> | |||
== References == | == References == | ||
* | * Caprine: [https://github.com/sindresorhus/caprine '''GitHub'''] | [https://sindresorhus.com/caprine/ Site] | ||
* Messenger for Desktop: [https://github.com/aluxian/Messenger-for-Desktop GitHub] | [https://messengerfordesktop.com/#download Messenger for Desktop] Site] | |||
<noinclude> | <noinclude> |
Revision as of 23:40, 18 August 2022
Messenger for Desktop is not longer available option. The good news is There is another nice app named Caprine which is an elegant Facebook Messenger desktop app.
Caprine is an unofficial and privacy-focused Facebook Messenger app with many useful features. Caprine is feature complete. However, we welcome contributions for improvements and bug fixes.
Download and install Caprine
Caprine is available as .AppImage
or .deb
file and many other packages. I prefer to use the .deb
package. At the time I'm writing this guide, its current version is 2.56.0
.
wget https://github.com/sindresorhus/caprine/releases/download/v2.56.0/caprine_2.56.0_amd64.deb -O ~/Downloads/caprine.deb
sudo apt install ~/Downloads/caprine.deb
Add Shortcut on the Desktop
cp /usr/share/applications/caprine.desktop ~/Desktop
Once the above command is executed, right click on the new icon and choice on the Allow Launching
option.
Add to Autostart Applications
cp /usr/share/applications/caprine.desktop ~/.config/autostart/
References