mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-09 05:50:47 -05:00
71 lines
1.5 KiB
Cheetah
71 lines
1.5 KiB
Cheetah
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
export EDITOR=nvim
|
|
export VISUAL=emacs
|
|
|
|
# Ensure XDG env vars are set
|
|
export XDG_CACHE_HOME="${HOME}"/.cache
|
|
export XDG_CONFIG_HOME="${HOME}"/.config
|
|
export XDG_DATA_HOME="${HOME}"/.local/share
|
|
export XDG_STATE_HOME="${HOME}"/.local/state
|
|
|
|
# add .local/bin to $PATH
|
|
export PATH="${HOME}/.local/bin:${PATH}"
|
|
|
|
# make Java behave when not using a DE
|
|
export _JAVA_AWT_WM_NONREPARENTING=1
|
|
|
|
# Sometimes needed for gpg passphrase prompt
|
|
export GPG_TTY=$(tty)
|
|
|
|
# Mozilla + Wayland
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
|
|
{{ if eq .chezmoi.hostname "helix" -}}
|
|
# scale GTK applicatons on hidpi screens
|
|
export GDK_SCALE=2 GDK_DPI_SCALE=0.50
|
|
{{- end }}
|
|
|
|
## No littering in $HOME!
|
|
|
|
# bash
|
|
export HISTFILE="${XDG_STATE_HOME}"/bash_history
|
|
|
|
# cargo
|
|
export CARGO_HOME="${XDG_DATA_HOME}"/cargo
|
|
|
|
# go
|
|
export GOPATH="${XDG_DATA_HOME}"/go
|
|
export GOMODCACHE="${XDG_CACHE_HOME}"/go/mod
|
|
|
|
# gpg
|
|
export GNUPGHOME="${XDG_DATA_HOME}"/gnupg
|
|
|
|
# gtk2
|
|
export GTK2_RC_FILES="${XDG_CONFIG_HOME}"/gtk-2.0/gtkrc
|
|
|
|
# node
|
|
export NPM_CONFIG_USERCONFIG="${XDG_CONFIG_HOME}"/npm/npmrc
|
|
|
|
# python
|
|
export PYTHONSTARTUP="${XDG_CONFIG_HOME}"/python/pythonrc
|
|
export PYTHONPYCACHEPREFIX="${XDG_CACHE_HOME}"/python
|
|
export PYTHONUSERBASE="${XDG_DATA_HOME}"/python
|
|
|
|
# wine
|
|
export WINEPREFIX="${XDG_DATA_HOME}"/wine
|
|
|
|
# Xorg
|
|
export XINITRC="${XDG_CONFIG_HOME}"/X11/xinitrc
|
|
export XAUTHORITY="${XDG_RUNTIME_DIR}"/Xauthority
|
|
|
|
# Source other dotfiles
|
|
[[ -f ~/.profile ]] && . ~/.profile
|
|
|
|
[[ -f ~/.bashrc ]] && . ~/.bashrc
|
|
|
|
# start river
|
|
[[ -z "${DISPLAY}" && "${XDG_VTNR}" -eq 1 ]] && exec dbus-run-session river
|
|
|