aboutsummaryrefslogtreecommitdiff
path: root/.bash_profile
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-05-15 02:16:34 -0400
committertdro <tdro@users.noreply.github.com>2020-05-15 02:16:34 -0400
commit6c5e48655b35b654a0cb4e53c5f56d07d0032a45 (patch)
tree3714bdbe1ecc98d0d40f88954549a4c4550bb7bd /.bash_profile
parentd535e75331f05c8a3803d96e51093b86d3cf229c (diff)
downloaddotfiles-6c5e48655b35b654a0cb4e53c5f56d07d0032a45.tar.gz
dotfiles-6c5e48655b35b654a0cb4e53c5f56d07d0032a45.tar.bz2
dotfiles-6c5e48655b35b654a0cb4e53c5f56d07d0032a45.zip
.bash_profile: Add user xorg.conf.d
Diffstat (limited to '.bash_profile')
-rw-r--r--.bash_profile4
1 files changed, 3 insertions, 1 deletions
diff --git a/.bash_profile b/.bash_profile
index 2b85542..43dd38c 100644
--- a/.bash_profile
+++ b/.bash_profile
@@ -5,7 +5,9 @@ export XAUTHORITY=$HOME/.config/X11/Xauthority;
# auto login
[ "$EUID" != 0 ] && [ -z "$DISPLAY" ] && [ "$(tty)" = '/dev/tty1' ] \
- && exec xinit "$HOME/.config/X11/xinitrc" -- :0 -logfile "$HOME/.cache/xorg.log" vt1 -keeptty -auth "$XAUTHORITY";
+ && exec xinit "$HOME/.config/X11/xinitrc" -- :0 \
+ -configdir "$HOME/.config/X11/xorg.conf.d" \
+ -logfile "$HOME/.cache/xorg.log" vt1 -keeptty -auth "$XAUTHORITY";
# set prompt
PS1_USER='$(E=$? && [ "$E" != 0 ] && echo "$E ")\[\e[0;34m\]\W\[\e[0m\] \[\e[0;34m\]\$\[\e[0m\] '