blob: 3f8c4439a804f4baea8475d3d0f3cd697b8c8b7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc
export PATH="$PATH:$HOME/.dotfiles/scripts"
export PATH="$PATH:$HOME/.dotfiles/shortcuts"
export PATH="$PATH:$HOME/.cargo/bin"
if [[ -t 0 && $(tty) == /dev/tty1 && ! $DISPLAY ]]; then
exec dbus-launch --exit-with-session Hyprland
fi
|