2020-11-16 23:06:41 +00:00
|
|
|
|
#!/bin/zsh
|
|
|
|
|
|
|
|
|
|
# profile file. Runs on login. Environmental variables are set here.
|
|
|
|
|
|
|
|
|
|
# If you don't plan on reverting to bash, you can remove the link in ~/.profile
|
|
|
|
|
# to clean up.
|
|
|
|
|
|
|
|
|
|
# Adds `~/.local/bin` to $PATH
|
2021-01-13 22:51:40 +00:00
|
|
|
|
export PATH="$PATH:${$(find ~/.local/bin -type d -printf %p:)%%:}"
|
2020-11-16 23:06:41 +00:00
|
|
|
|
|
2020-11-19 14:21:04 +00:00
|
|
|
|
unsetopt PROMPT_SP
|
|
|
|
|
|
2020-11-16 23:06:41 +00:00
|
|
|
|
# Default programs:
|
|
|
|
|
export EDITOR="nvim"
|
|
|
|
|
export TERMINAL="st"
|
2022-08-03 12:40:52 +00:00
|
|
|
|
export BROWSER="librewolf"
|
2020-11-16 23:06:41 +00:00
|
|
|
|
|
|
|
|
|
# ~/ Clean-up:
|
|
|
|
|
export XDG_CONFIG_HOME="$HOME/.config"
|
|
|
|
|
export XDG_DATA_HOME="$HOME/.local/share"
|
|
|
|
|
export XDG_CACHE_HOME="$HOME/.cache"
|
2021-02-21 15:10:28 +00:00
|
|
|
|
export XINITRC="${XDG_CONFIG_HOME:-$HOME/.config}/x11/xinitrc"
|
2020-11-16 23:06:41 +00:00
|
|
|
|
#export XAUTHORITY="$XDG_RUNTIME_DIR/Xauthority" # This line will break some DMs.
|
|
|
|
|
export NOTMUCH_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}/notmuch-config"
|
|
|
|
|
export GTK2_RC_FILES="${XDG_CONFIG_HOME:-$HOME/.config}/gtk-2.0/gtkrc-2.0"
|
|
|
|
|
export LESSHISTFILE="-"
|
|
|
|
|
export WGETRC="${XDG_CONFIG_HOME:-$HOME/.config}/wget/wgetrc"
|
|
|
|
|
export INPUTRC="${XDG_CONFIG_HOME:-$HOME/.config}/shell/inputrc"
|
|
|
|
|
export ZDOTDIR="${XDG_CONFIG_HOME:-$HOME/.config}/zsh"
|
2020-11-19 14:21:04 +00:00
|
|
|
|
#export ALSA_CONFIG_PATH="$XDG_CONFIG_HOME/alsa/asoundrc"
|
|
|
|
|
#export GNUPGHOME="${XDG_DATA_HOME:-$HOME/.local/share}/gnupg"
|
2020-11-16 23:06:41 +00:00
|
|
|
|
export WINEPREFIX="${XDG_DATA_HOME:-$HOME/.local/share}/wineprefixes/default"
|
|
|
|
|
export KODI_DATA="${XDG_DATA_HOME:-$HOME/.local/share}/kodi"
|
|
|
|
|
export PASSWORD_STORE_DIR="${XDG_DATA_HOME:-$HOME/.local/share}/password-store"
|
|
|
|
|
export TMUX_TMPDIR="$XDG_RUNTIME_DIR"
|
|
|
|
|
export ANDROID_SDK_HOME="${XDG_CONFIG_HOME:-$HOME/.config}/android"
|
|
|
|
|
export CARGO_HOME="${XDG_DATA_HOME:-$HOME/.local/share}/cargo"
|
|
|
|
|
export GOPATH="${XDG_DATA_HOME:-$HOME/.local/share}/go"
|
|
|
|
|
export ANSIBLE_CONFIG="${XDG_CONFIG_HOME:-$HOME/.config}/ansible/ansible.cfg"
|
|
|
|
|
export UNISON="${XDG_DATA_HOME:-$HOME/.local/share}/unison"
|
|
|
|
|
export HISTFILE="${XDG_DATA_HOME:-$HOME/.local/share}/history"
|
|
|
|
|
export WEECHAT_HOME="${XDG_CONFIG_HOME:-$HOME/.config}/weechat"
|
2021-03-07 20:44:52 +00:00
|
|
|
|
export MBSYNCRC="${XDG_CONFIG_HOME:-$HOME/.config}/mbsync/config"
|
|
|
|
|
export ELECTRUMDIR="${XDG_DATA_HOME:-$HOME/.local/share}/electrum"
|
2020-11-16 23:06:41 +00:00
|
|
|
|
|
|
|
|
|
# Other program settings:
|
|
|
|
|
export DICS="/usr/share/stardict/dic/"
|
|
|
|
|
export SUDO_ASKPASS="$HOME/.local/bin/dmenupass"
|
|
|
|
|
export FZF_DEFAULT_OPTS="--layout=reverse --height 40%"
|
|
|
|
|
export LESS=-R
|
|
|
|
|
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')"
|
|
|
|
|
export LESSOPEN="| /usr/bin/highlight -O ansi %s 2>/dev/null"
|
|
|
|
|
export QT_QPA_PLATFORMTHEME="gtk2" # Have QT use gtk2 theme.
|
|
|
|
|
export MOZ_USE_XINPUT2="1" # Mozilla smooth scrolling/touchpads.
|
|
|
|
|
export AWT_TOOLKIT="MToolkit wmname LG3D" #May have to install wmname
|
|
|
|
|
export _JAVA_AWT_WM_NONREPARENTING=1 # Fix for Java applications in dwm
|
|
|
|
|
|
2022-08-03 19:19:27 +00:00
|
|
|
|
[ ! -f ${XDG_CONFIG_HOME:-$HOME/.config}/shell/shortcutrc ] && setsid shortcuts >/dev/null 2>&1
|
|
|
|
|
|
2022-07-20 17:34:37 +00:00
|
|
|
|
# Start graphical server on user's current tty if not already running.
|
|
|
|
|
[ "$(tty)" = "/dev/tty1" ] && ! pidof -s Xorg >/dev/null 2>&1 && exec startx "$XINITRC"
|
|
|
|
|
|
2020-11-16 23:06:41 +00:00
|
|
|
|
# Switch escape and caps if tty and no passwd required:
|
|
|
|
|
sudo -n loadkeys ${XDG_DATA_HOME:-$HOME/.local/share}/larbs/ttymaps.kmap 2>/dev/null
|