diff options
| author | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-02-20 21:43:10 -0500 |
|---|---|---|
| committer | Jacob McDonnell <jacob@jacobmcdonnell.com> | 2026-02-20 21:43:10 -0500 |
| commit | 8276fb9c65e40605f7d56dac3326b3f9f90c615d (patch) | |
| tree | 180a269d5ebd4550895179d27d4428832dc5ffa6 /.config/.profile | |
| parent | 4f0ce1701ad4419745a56131f254efa77c526f1e (diff) | |
feat: Added extra computer symbols
The following operating systems have symbols added to the shell.
- SunOS: Σ
- FreeBSD: Φ
- OpenBSD: Ω
- NetBSD: μ
Diffstat (limited to '.config/.profile')
| -rw-r--r-- | .config/.profile | 16 |
1 files changed, 12 insertions, 4 deletions
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 |
