From 8276fb9c65e40605f7d56dac3326b3f9f90c615d Mon Sep 17 00:00:00 2001 From: Jacob McDonnell Date: Fri, 20 Feb 2026 21:43:10 -0500 Subject: feat: Added extra computer symbols MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The following operating systems have symbols added to the shell. - SunOS: Σ - FreeBSD: Φ - OpenBSD: Ω - NetBSD: μ --- .config/.profile | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) (limited to '.config') diff --git a/.config/.profile b/.config/.profile index 2213b6b..d5581c2 100644 --- a/.config/.profile +++ b/.config/.profile @@ -8,10 +8,18 @@ export HOMEBREW_EDITOR=nvim export shColor=green export OS="$(uname -s)" if [[ $OS == "Darwin" ]]; then - export comSym= - eval "$(/opt/homebrew/bin/brew shellenv)" -elif [[ $OS == "Linux" ]]; then - export comSym=λ + export comSym='' + eval "$(/opt/homebrew/bin/brew shellenv)" +elif [[ $OS == 'Linux' ]]; then + export comSym='λ' +elif [[ $OS == 'SunOS' ]]; then + export comSym='Σ' +elif [[ $OS == 'FreeBSD' ]]; then + export comSym='Φ' +elif [[ $OS == 'OpenBSD' ]]; then + export comSym='Ω' +elif [[ $OS == 'NetBSD' ]]; then + export comSym='μ' fi # Setting up XDG Dirs -- cgit v1.2.3