mirror of
				https://github.com/ItsDrike/dotfiles.git
				synced 2025-11-04 09:16:36 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			63 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			63 lines
		
	
	
	
		
			2.4 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Environmental variable definitions.
 | 
						|
# This file is only sourced once after login, unlike .zshrc/.bashrc
 | 
						|
#
 | 
						|
# NOTE: This file shouldn't be defined for root account. Sudo
 | 
						|
# will not source it (and neither will it source .zshrc/.zprofile),
 | 
						|
# which means the XDG definitions will be ignored anyway, and
 | 
						|
# defining them may break programs when root is actually logged in.
 | 
						|
 | 
						|
 | 
						|
# Default programs
 | 
						|
export EDITOR="nvim"
 | 
						|
export BROWSER="firefox"
 | 
						|
export TERMINAL="alacritty"
 | 
						|
 | 
						|
# XDG Standard paths
 | 
						|
export XDG_CONFIG_HOME="$HOME/.config"
 | 
						|
export XDG_CACHE_HOME="$HOME/.cache"
 | 
						|
export XDG_DATA_HOME="$HOME/.local/share"
 | 
						|
export XDG_RUNTIME_DIR="/run/user/$UID"
 | 
						|
 | 
						|
# Per-Application XDG settings
 | 
						|
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
 | 
						|
export XINITRC="$XDG_CONFIG_HOME/x11/xinitrc"
 | 
						|
#export XAUTHORITY="$XDG_RUNTIME_DIR/Xauthority" # This line will break some DMs.
 | 
						|
export LESSHISTFILE="-"
 | 
						|
export GTK2_RC_FILES="$XDG_CONFIG_HOME/gtk-2.0/gtkrc"
 | 
						|
export WGETRC="$XDG_CONFIG_HOME/wget/wgetrc"
 | 
						|
export GNUPGHOME="$XDG_DATA_HOME/gnupg"
 | 
						|
# Less commonly used applications
 | 
						|
export _ZL_DATA="$XDG_DATA_HOME/zlua"
 | 
						|
export NPM_CONFIG_USERCONFIG="$XDG_CONFIG_HOME/npm/npmrc"
 | 
						|
export SQLITE_HISTORY="$XDG_DATA_HOME/sqlite_history"
 | 
						|
export WAKATIME_HOME="$XDG_CONFIG_HOME/wakatime"
 | 
						|
export GOPATH="$XDG_DATA_HOME/go"
 | 
						|
export IPYTHONDIR="$XDG_CONFIG_HOME/ipython"
 | 
						|
#export PYLINTHOME="$XDG_CACHE_HOME/pylint"
 | 
						|
#export DOCKER_CONFIG="$XDG_CONFIG_HOME/docker"
 | 
						|
#export CUDA_CACHE_PATH="$XDG_CACHE_HOME/nv"
 | 
						|
#export _JAVA_OPTIONS="-Djava.util.prefs.userRoot=$XDG_CONFIG_HOME/java"
 | 
						|
 | 
						|
# Colorful man pages
 | 
						|
# If bat is installed, use it as manpager
 | 
						|
if command -v bat > /dev/null; then
 | 
						|
    export MANPAGER="sh -c 'col -bx | bat -l man -p'"
 | 
						|
else
 | 
						|
    export LESS_TERMCAP_mb="$(printf '%b' '[1;31m')"
 | 
						|
    export LESS_TERMCAP_md="$(printf '%b' '[1;36m')"
 | 
						|
    export LESS_TERMCAP_me="$(printf '%b' '[0m')"
 | 
						|
    export LESS_TERMCAP_so="$(printf '%b' '[01;44;33m')"
 | 
						|
    export LESS_TERMCAP_se="$(printf '%b' '[0m')"
 | 
						|
    export LESS_TERMCAP_us="$(printf '%b' '[1;32m')"
 | 
						|
    export LESS_TERMCAP_ue="$(printf '%b' '[0m')"
 | 
						|
fi
 | 
						|
 | 
						|
# Other program settings
 | 
						|
export SUDO_ASKPASS="$HOME/.local/bin/scripts/dmenu/dmenupass"
 | 
						|
export PIPENV_VENV_IN_PROJECT=1 # Force pipenv to create new environments within projects ./.venv
 | 
						|
export XSECURELOCK_SHOW_HOSTNAME=0 # Don't show hostname in xsecurelock
 | 
						|
export XSECURELOCK_SHOW_DATETIME=1 # Show current date and time in xsecurelock
 | 
						|
#export QT_QPA_PLATFORMTHEME="gtk2"	# Have QT use gtk2 theme.
 | 
						|
 |