From c9efe04b172f99ce67f478e09c2f8b517c912980 Mon Sep 17 00:00:00 2001 From: "Bradan J. Wolbeck" Date: Sun, 26 Jul 2026 16:18:37 -0600 Subject: [PATCH] feat(bash): improve proxmox detection --- bash/bashrc | 5 +++++ 1 file changed, 5 insertions(+) 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\]'