0
0
Fork 0
mirror of https://github.com/stronk-dev/Tokyo-Night-Linux.git synced 2024-10-17 20:58:16 -04:00
tokyo-night-linux/.bash_profile

18 lines
361 B
Bash
Raw Normal View History

2021-07-14 10:57:27 -04:00
#
# ~/.bash_profile
#
[[ -f ~/.bashrc ]] && . ~/.bashrc
2021-07-18 05:26:12 -04:00
2021-07-14 10:57:27 -04:00
if [ -n "$DESKTOP_SESSION" ];then
eval $(gnome-keyring-daemon --start)
export SSH_AUTH_SOCK
fi
2021-07-18 05:26:12 -04:00
# 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