dots/.bash_profile

12 lines
290 B
Bash
Raw Normal View History

2023-08-30 11:38:03 +02:00
# shellcheck shell=bash
# shellcheck disable=SC1090
2020-02-18 15:16:20 +01:00
[[ -f ~/.bashrc ]] && . ~/.bashrc
2022-09-24 12:29:42 +02:00
export SSH_AUTH_SOCK="${XDG_RUNTIME_DIR}/ssh-agent.socket"
2024-01-30 21:51:18 +01:00
export _JAVA_AWT_WM_NONREPARENTING=1
2022-09-24 12:29:42 +02:00
2024-01-30 21:51:18 +01:00
if [[ -z "${DISPLAY}" ]] && [[ "${XDG_VTNR}" -eq 1 ]]; then
2023-08-02 16:58:08 +02:00
exec startx "$HOME/.config/X11/xinitrc"
2020-02-18 15:16:20 +01:00
fi