Kali Linux Install Telegram

From WikiMLT

Telegram is avail­able with­in the Kali's repos­i­to­ry, but the ver­sion is lit­tle bit old­er than the cur­rent ver­sion of Telegram for Desk­top. Here is short script how to down­load and de­ploy the lat­est ver­sion via the com­mand line.

cd ~/Downloads
wget https://telegram.org/dl/desktop/linux -O telegram-desktop-linux.tar.xz
tar -xvf telegram-desktop-linux.tar.xz
mv Telegram ~/.local/share/TelegramDesktop
~/.local/share/TelegramDesktop/Telegram &
rm telegram-desktop-linux.tar.xz

Penul­ti­mate com­mand above will start the Telegram ap­pli­ca­tion. Once it is start­ed it will cre­ate au­to­mat­i­cal­ly the nec­es­sary .desk­top files, so you can find Telegram with­in the GNOME's ap­pli­ca­tions list. Al­so you could set­up Telegram to au­to­mat­i­cal­ly start at user log-in from with­in its set­tings.

If you want to put a Telegram icon at the desk­top ex­e­cute the fol­low­ing com­mand. Note Telegram must be start­ed at least one time be­fore run­ning the find/​​​copy com­mand be­low.

find ~/.local -type f -name 'appimagekit*Telegram*.desktop' -exec cp {} ~/Desktop/Telegram.desktop \;
sed -r -e '/^(Version|SingleMainWindow)/d' -e 's/^(Name=Telegram).*$/\1/' ~/Desktop/Telegram.desktop -i

Then right click on the new icon at the desk­top and choice on the Al­low Launch­ing op­tion. Or run the fol­low­ing com­mands which will do the same for you.

desktop-file-install --mode=0755 --dir=$HOME/Desktop ~/Desktop/Telegram.desktop
dbus-launch gio set ~/Desktop/Telegram.desktop "metadata::trusted" true