dotfiles/.profile

30 lines
760 B
Bash

#!/usr/bin/env bash
# This file provide user specific environment used as fallback from several tools
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
export PATH=$HOME/bin:$PATH
fi
# Search a TERMINAL for i3
for term in kitty termite qterminal urxvt rxvt-unicode sakura gnome-terminal; do
if [[ -n `which $term` ]]; then
export TERMINAL=`which $term`
break
fi
done
# Permit DBUS to be launched
if [ "$0" = "/usr/sbin/lightdm-session" -a "$DESKTOP_SESSION" = "i3" ]; then
export $(gnome-keyring-daemon -s)
fi
# Démarrage de l'environnement préféré
if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
if [ $HOST = 'fuztest' ] || [ $HOST = 'fuz' ]; then
exec sway
else
exec i3
fi
fi