dotfiles/.bash_profile
2022-12-15 15:42:54 +00:00

26 lines
478 B
Bash

#
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc
# custom scripts and programs
PATH="$HOME/.local/bin:$PATH"
PATH="$HOME/.config/scripts/bin:$PATH"
if grep "arch-laptop" /etc/hostname &> /dev/null ; then
export IS_LAPTOP=1
fi
# for java applicatons
export _JAVA_AWT_WM_NONREPARENTING=1
if [[ -z "$DISPLAY" ]] && [[ $(tty) = /dev/tty1 ]]; then
if [[ ! -z "$IS_LAPTOP" ]]; then
WLR_DRM_DEVICES=/dev/dri/card1:/dev/dri/card0 sway
else
exec start-sway.sh
fi
fi