1
0
Fork 0

update `.profile`

urosm 2023-12-20 20:49:49 +01:00
parent 596932ca27
commit e419d10a3c
1 changed files with 8 additions and 6 deletions

14
profile
View File

@ -1,11 +1,18 @@
# .profile
# ~/.profile
# if running bash
if [ -n "$BASH_VERSION" ]; then
# include .bashrc if it exists
if [ -f "$HOME/.bashrc" ]; then
. "$HOME/.bashrc"
fi
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/bin" ] ; then
PATH="$HOME/bin:$PATH"
fi
# set PATH so it includes user's private bin if it exists
if [ -d "$HOME/.local/bin" ]; then
PATH="$HOME/.local/bin:$PATH"
@ -81,16 +88,11 @@ if [ "$(tty)" = "/dev/tty1" ] && command -v sway &>/dev/null; then
# locale
export LANG=sl_SI.UTF-8
export LC_MESSAGES=en_US.UTF-8
# defaults
export EDITOR=nvim
export VISUAL=nvim
export TERMINAL=footclient
export BROWSER=firefox
# wayland
# export WLR_DRM_NO_ATOMIC=1
# run sway
exec systemd-cat --identifier=sway sway
fi