aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.profile
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/.profile')
-rw-r--r--dotfiles/.profile4
1 files changed, 3 insertions, 1 deletions
diff --git a/dotfiles/.profile b/dotfiles/.profile
index 7d6f809..e1844df 100644
--- a/dotfiles/.profile
+++ b/dotfiles/.profile
@@ -17,6 +17,7 @@ export LANG=en_US.UTF-8
export TERMINAL=foot
export EDITOR="nvim"
export PAGER="less -R -j.5"
+export MANPAGER='nvim +Man!'
export BROWSER=qutebrowser
# Sanely export XDG Base dir variables
@@ -38,10 +39,11 @@ eval "$(dircolors "$HOME/.config/dir_colors")"
. "$HOME/.config/lf/icons"
+export $(dbus-launch)
+
# Start sway automatically upon login on tty1 or tty2
if [ -z $DISPLAY ] && [ $(tty) = /dev/tty1 ] || [ $(tty) = /dev/tty2 ]; then
# DBUS variables (for Artix)
- export $(dbus-launch)
sway -d 2> ~/.cache/sway.log 1> /dev/null && clear && exit
mv ~/.cache/sway.log ~/.cache/sway-crash-$(date +"%Y-%m-%dT%H:%M").log
fi