diff --git a/docs/proxmox/LXC-Debian.md b/docs/proxmox/LXC-Debian.md index 6f4b538..4ead627 100644 --- a/docs/proxmox/LXC-Debian.md +++ b/docs/proxmox/LXC-Debian.md @@ -4,24 +4,24 @@ Open Proxmox Terminal and send: only Debian: -``` +```bash clear;bash -c "$(wget -qLO - https://u.sthope.dev/only-debian)" ``` with Docker: -``` +```bash clear;bash -c "$(wget -qLO - https://u.sthope.dev/debian-with-docker)" ``` with Docker & Portainer: -``` +```bash clear;bash -c "$(wget -qLO - https://u.sthope.dev/debian-with-portainer)" ``` Create new user, replace `USER` with your username and `PWD` with your password and send: -``` +```bash bash -c "$(wget -qLO - https://u.sthope.dev/addUser)" createuser USER PWD ``` diff --git a/docs/proxmox/how-to-install-home-assistant.md b/docs/proxmox/how-to-install-home-assistant.md index 8ba1169..a467b2f 100644 --- a/docs/proxmox/how-to-install-home-assistant.md +++ b/docs/proxmox/how-to-install-home-assistant.md @@ -3,7 +3,7 @@ ![Home Assistant](/../../images/logos/ha-logo.png){: align=left width=200 } Open Proxmox Terminal and send: -``` +```bash clear;bash -c "$(wget -qLO - https://u.sthope.dev/proxmox-hassos)" ``` diff --git a/docs/proxmox/send-cpu-temp-to-ha.md b/docs/proxmox/send-cpu-temp-to-ha.md index 23cd7a5..afcf7e8 100644 --- a/docs/proxmox/send-cpu-temp-to-ha.md +++ b/docs/proxmox/send-cpu-temp-to-ha.md @@ -5,7 +5,7 @@ Thanks for [nikito7](https://github.com/nikito7) nano proxmox_sendTemp_2HA ``` -``` +```bash #!/bin/bash # ___ _ _ _ __ # / __|| |_ | |_ ___ | '_ \ ___ @@ -27,6 +27,6 @@ mosquitto_pub -h $host -u $user -P $pass -t proxmox/$proxmox_name/cpu_temp -m $t chmod +x proxmox_sendTemp_2HA; ``` -``` +```bash while proxmox_sendTemp_2HA; do sleep 10; done ``` \ No newline at end of file