Skip to content

Latest commit

 

History

History
166 lines (116 loc) · 3.14 KB

File metadata and controls

166 lines (116 loc) · 3.14 KB

google chrome

🐧 Linux User :link: https://doc.ubuntu-fr.org/google_chrome

sudo sh -c 'echo "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list'
 wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo apt-get install google-chrome-stable

🍎 MAC User

🔗 https://www.google.com/chrome/

robot3T

🐧 Linux User :link: https://gist.github.com/abdallahokasha/37911a64ad289487387e2d1a144604ae

Take the correct version, in this exemple we take robo3t-1.2.1-linux-x86_64-3e50a65

wget https://download.robomongo.org/1.2.1/linux/robo3t-1.2.1-linux-x86_64-3e50a65.tar.gz
tar -xvzf robo3t-1.2.1-linux-x86_64-3e50a65.tar.gz
sudo mkdir /usr/local/bin/robo3t

Move the extracted package to usr/local/bin

sudo mv  robo3t-1.2.1-linux-x86_64-3e50a65/* /usr/local/bin/robo3t
cd /usr/local/bin/robo3t/bin
sudo chmod +x robo3t ./robo3t

✔️ Check if it's correctly installed

./robo3t

🚩 Optional: Put robot3T Icon and shortcut

mv icon.png /usr/local/bin/robo3t/bin

In order to create desktop icon for Robo3t, we can make a file in usr/share/applications

sudo vim /usr/share/applications/robo3t.desktop

Copy & paste this

[Desktop Entry]
Encoding=UTF-8
Type=Application
Name=Robo3t
Icon=/usr/local/bin/robo3t/bin/icon.png
Exec="/usr/local/bin/robo3t/bin/robo3t"
Comment=Robo3t 
Categories=Development;
Terminal=false
StartupNotify=true

🍎 MAC User

🔗 https://robomongo.org/

postman

🔗 https://gist.github.com/invinciblycool/ecc1c6e32b581b68932ac7452f4c911c

sudo snap install postman

Take the correct version, in this example we will take 5.3.2 version

tar -xzf Postman-linux-x64-5.3.2.tar.gz
sudo mv Postman /opt/Postman
sudo ln -s /opt/Postman/Postman /usr/bin/postman

Create desktop file

cat > ~/.local/share/applications/postman.desktop <<EOL
[Desktop Entry]
Encoding=UTF-8
Name=Postman
Exec=postman
# Before v6.1.2
# Icon=/opt/Postman/resources/app/assets/icon.png
Icon=/opt/Postman/app/resources/app/assets/icon.png
Terminal=false
Type=Application
Categories=Development;
EOL
rm Postman-linux-x64-5.3.2.tar.gz

🍎 MAC User :link: https://www.postman.com/downloads/

vscode

🐧 Linux User

🔗 https://linuxize.com/post/how-to-install-visual-studio-code-on-ubuntu-18-04/

sudo apt install software-properties-common apt-transport-https wget
wget -q https://packages.microsoft.com/keys/microsoft.asc -O- | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://packages.microsoft.com/repos/vscode stable main"
sudo apt install code

🍎 MAC User

🔗 https://code.visualstudio.com/download

Configure code cmd -> https://code.visualstudio.com/docs/setup/mac#_launching-from-the-command-line

🚩 Optional: Add all configuratin from ./vscode folder