diff --git a/README.md b/README.md
index a2d54fd8..06c84a25 100644
--- a/README.md
+++ b/README.md
@@ -260,7 +260,8 @@ ________________________________________________________________________________
Home Assistant Core LXC
-A standalone installation of Home Assistant Core
+A standalone installation of Home Assistant Core
+🛈 If the LXC is created Privileged, the script will automatically set up USB passthrough.
To create a new Proxmox Home Assistant Core LXC, run the following in the Proxmox Shell.
@@ -270,8 +271,7 @@ bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/ct/homeassistan
⚡ Default Settings: 1GB RAM - 8GB Storage - 2vCPU ⚡
-⚠️ Initialize Home Assistant-Core (Only required once)
-
+⚠️ Initialize Home Assistant-Core (Only required once)
Run in the LXC console
```yaml
cd /srv/homeassistant && python3 -m venv . && source bin/activate && hass
@@ -279,24 +279,21 @@ cd /srv/homeassistant && python3 -m venv . && source bin/activate && hass
***Home Assistant Interface - IP:8123***
-⚙️ **Edit the HA configuration.yaml**
-
+⚙️ **Edit the HA configuration.yaml**
Run in the LXC console
```yaml
nano .homeassistant/configuration.yaml
```
Save and exit the editor with “Ctrl+O”, “Enter” and “Ctrl+X”
-⚙️ **Install HACS:**
-
+⚙️ **Install HACS:**
Run in the LXC console
```yaml
bash -c "$(wget -qLO - https://github.com/tteck/Proxmox/raw/main/misc/hacs-core.sh)"
```
After install, reboot Home Assistant and **clear browser cache** then Add HACS integration.
-⚙️ **Update Home Assistant**
-
+⚙️ **Update Home Assistant**
Run in the LXC console
```yaml
systemctl stop homeassistant.service && source /srv/homeassistant/bin/activate && pip3 install --upgrade homeassistant && systemctl start homeassistant.service && exit