#!/bin/bash

# Get the aliases and functions
if [ -f ~/.bashrc ]; then
        . ~/.bashrc
fi

# User specific environment and startup programs

PATH=$PATH:$HOME/.local/bin:$HOME/bin

export PATH

if [[ -z $DISPLAY && $XDG_VTNR -eq 1 ]]; then
        if "/usr/bin/isVaultS"; then
                # vaults
                exec startx -- :0 vt1 -nolisten tcp
        fi
fi
