Markdown style fixes

This commit is contained in:
2023-10-15 21:50:04 +02:00
parent 2868fc56a9
commit 76c71fb194
5 changed files with 18 additions and 16 deletions
+6 -6
View File
@@ -5,27 +5,27 @@
* Linux Mint 21.2 Cinnamon * Linux Mint 21.2 Cinnamon
* Google Chrome Versie 118.0.5993.70 (Officiële build) (64-bits) * Google Chrome Versie 118.0.5993.70 (Officiële build) (64-bits)
## Installation steps ## Installation
``` ```shell
curl -fSsL https://dl.google.com/linux/linux_signing_key.pub | sudo gpg --dearmor | sudo tee /usr/share/keyrings/google-chrome.gpg >> /dev/null curl -fSsL https://dl.google.com/linux/linux_signing_key.pub | sudo gpg --dearmor | sudo tee /usr/share/keyrings/google-chrome.gpg >> /dev/null
``` ```
``` ```shell
echo deb [arch=amd64 signed-by=/usr/share/keyrings/google-chrome.gpg] http://dl.google.com/linux/chrome/deb/ stable main | sudo tee /etc/apt/sources.list.d/google-chrome.list echo deb [arch=amd64 signed-by=/usr/share/keyrings/google-chrome.gpg] http://dl.google.com/linux/chrome/deb/ stable main | sudo tee /etc/apt/sources.list.d/google-chrome.list
``` ```
``` ```shell
sudo apt update sudo apt update
``` ```
``` ```shell
sudo apt install -y google-chrome-stable sudo apt install -y google-chrome-stable
``` ```
## Removal ## Removal
``` ```shell
sudo apt autoremove --purge google-chrome-stable sudo apt autoremove --purge google-chrome-stable
``` ```
+1
View File
@@ -9,4 +9,5 @@ My collection of readme files for Debian based desktop opperating systems.
* [VirtualBox](virtualbox.md) * [VirtualBox](virtualbox.md)
## Tips ## Tips
* [Type characters with accents like in Windows](type-characters-with-accents-like-in-windows.md) * [Type characters with accents like in Windows](type-characters-with-accents-like-in-windows.md)
+6 -6
View File
@@ -5,27 +5,27 @@
* Linux Mint 21.2 Cinnamon * Linux Mint 21.2 Cinnamon
* Steam Version 1696019606 * Steam Version 1696019606
## Installation steps ## Installation
``` ```shell
sudo wget -O- http://repo.steampowered.com/steam/archive/stable/steam.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/steam.gpg sudo wget -O- http://repo.steampowered.com/steam/archive/stable/steam.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/steam.gpg
``` ```
``` ```shell
echo deb [arch=amd64 signed-by=/usr/share/keyrings/steam.gpg] http://repo.steampowered.com/steam/ stable steam | sudo tee /etc/apt/sources.list.d/steam.list echo deb [arch=amd64 signed-by=/usr/share/keyrings/steam.gpg] http://repo.steampowered.com/steam/ stable steam | sudo tee /etc/apt/sources.list.d/steam.list
``` ```
``` ```shell
sudo apt update sudo apt update
``` ```
``` ```shell
sudo apt install -y steam sudo apt install -y steam
``` ```
## Removal ## Removal
``` ```shell
sudo apt autoremove -y --purge steam sudo apt autoremove -y --purge steam
``` ```
@@ -13,4 +13,5 @@ When instead of use Ctrl + Shift + U to enter characters with accent you want to
* Close the window. * Close the window.
## Source ## Source
* [Linux Mint Forums](https://forums.linuxmint.com/viewtopic.php?t=34556) * [Linux Mint Forums](https://forums.linuxmint.com/viewtopic.php?t=34556)
+4 -4
View File
@@ -5,18 +5,18 @@
* Linux Mint 21.2 Cinnamon * Linux Mint 21.2 Cinnamon
* VirtualBox Version 6.1.38_Ubuntu r153438 * VirtualBox Version 6.1.38_Ubuntu r153438
## Installation steps ## Installation
``` ```shell
sudo apt update sudo apt update
``` ```
``` ```shell
sudo apt install -y virtualbox virtualbox-ext-pack sudo apt install -y virtualbox virtualbox-ext-pack
``` ```
## Removal ## Removal
``` ```shell
sudo apt autoremove -y --purge virtualbox virtualbox-ext-pack sudo apt autoremove -y --purge virtualbox virtualbox-ext-pack
``` ```