diff --git a/bash/bashrc b/bash/bashrc index 6c4b6a5..df99578 100644 --- a/bash/bashrc +++ b/bash/bashrc @@ -25,6 +25,11 @@ if [[ -d /boot/efi/EFI/proxmox ]]; then DISTRO='proxmox' fi +# Non-UEFI installs... probably makes the above check redundant anyways. +if [[ $DISTRO != proxmox && -d /boot/pve ]]; then + DISTRO='proxmox' +fi + case "$DISTRO" in proxmox|ubuntu) DISTRO_COLOR='\[\e[38;5;208;3;4m\]'