1
0
Fork 0
dot/.profile

50 lines
1.1 KiB
Plaintext
Raw Normal View History

2024-01-27 21:15:47 +01:00
# ~/.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
2024-03-01 12:52:12 +01:00
if [ -d "$HOME/bin" ]; then
2024-01-27 21:15:47 +01:00
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"
fi
# xdg base directory specification
export XDG_CONFIG_HOME=$HOME/.config
2024-05-07 14:07:40 +02:00
export XDG_CACHE_HOME=$HOME/.cache
export XDG_DATA_HOME=$HOME/.local/share
2024-01-27 21:15:47 +01:00
export XDG_STATE_HOME=$HOME/.local/state
export XDG_DATA_DIRS=/usr/local/share:/usr/share
export XDG_CONFIG_DIRS=/etc/xdg
# .bash_history
export HISTFILE=$XDG_STATE_HOME/bash/history
if [ ! -d "$(dirname "${HISTFILE}")" ]; then
mkdir -p "$(dirname "${HISTFILE}")"
fi
# editor
export EDITOR=vi
# desktop
2024-03-01 12:52:12 +01:00
if [ "$(tty)" = "/dev/tty1" ] && command -v sway >/dev/null; then
2024-01-27 21:15:47 +01:00
# locale
export LANG=sl_SI.UTF-8
export LC_MESSAGES=en_US.UTF-8
# defaults
export TERMINAL=footclient
export BROWSER=firefox
# run sway
export XDG_CURRENT_DESKTOP=sway
2024-05-05 17:54:07 +02:00
exec systemd-cat --identifier sway sway
2024-01-27 21:15:47 +01:00
fi