mirror of
https://codeberg.org/andyscott/dotfiles.git
synced 2024-11-08 13:30:47 -05:00
84 lines
2 KiB
Cheetah
84 lines
2 KiB
Cheetah
#
|
|
# ~/.bash_profile
|
|
#
|
|
|
|
export EDITOR=nvim
|
|
export VISUAL=emacs
|
|
|
|
# Ensure XDG env vars are set correctly
|
|
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
|
|
|
|
# xsecurelock settings
|
|
export XSECURELOCK_AUTH=auth_x11
|
|
export XSECURELOCK_AUTHPROTO=authproto_pam
|
|
export XSECURELOCK_BURNIN_MITIGATION=300
|
|
export XSECURELOCK_PASSWORD_PROMPT=time
|
|
|
|
{{ if eq .chezmoi.hostname "helix" -}}
|
|
# scale GTK applicatons on hidpi screens
|
|
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 thunar
|
|
export GDK_SCALE=2 GDK_DPI_SCALE="0.50 Simple-scan"
|
|
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 lutris
|
|
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 spotify
|
|
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 pinta
|
|
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 Gajim
|
|
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 Ristretto
|
|
export GDK_SCALE=2 GDK_DPI_SCALE=0.50 ghex
|
|
{{- 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
|
|
|