summaryrefslogtreecommitdiff
path: root/raveos-cosmic-theme/theme-data/profile.d/raveos-fastfetch.sh
blob: b3fe8ced7108ab6dcbec04c3f8f93bfc78b1dae7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

if [[ -z "${RAVEOS_GREETED:-}" && -z "${VSCODE_PID:-}" && "${TERM}" != "dumb" ]]; then
    export RAVEOS_GREETED=1
    
    if command -v fastfetch >/dev/null 2>&1; then
        if [[ "${TERM}" == "xterm-kitty" ]]; then
            fastfetch --config "${HOME}/.config/fastfetch/config-kitty.jsonc"
        else
            fastfetch --config "${HOME}/.config/fastfetch/config.jsonc"
        fi
    fi
fi