mirror of
https://github.com/stronk-dev/Tokyo-Night-Linux.git
synced 2025-01-02 21:08:39 -05:00
17 lines
361 B
Bash
17 lines
361 B
Bash
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
if [ -n "$DESKTOP_SESSION" ];then
|
|
eval $(gnome-keyring-daemon --start)
|
|
export SSH_AUTH_SOCK
|
|
fi
|
|
|
|
# Autostart xorg (and thus i3) when logging in
|
|
# Keep commented out if you want to use GDM
|
|
# or any other display manager to login
|
|
#if [[ -z$DISPLAY ]] && [[ $(tty) = /dev/tty1 ]]; then
|
|
# startx
|
|
#fi
|