#!/bin/zsh # Profile file - executed by login shells # XDG export XDG_CACHE_HOME="$HOME/.cache" export XDG_CONFIG_HOME="$HOME/.config" export XDG_DATA_HOME="$HOME/.local/share" # PATH export PATH=$PATH:~/.local/bin:~/.local/bin/cryptusb:~/.local/bin/private:~/.local/bin/statusbar:~/.local/bin/theme:~/.local/bin/cmus:~/.local/bin/dmenu:~/.local/bin/backups # Defaults export BROWSER="firefox" export EDITOR="vim" export TERMINAL="st" # Other vars export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01' export LESSHISTFILE='-' export LIBVIRT_DEFAULT_URI="qemu:///system" export PASSWORD_STORE_DIR="$XDG_DATA_HOME/password-store" export XINITRC="$XDG_CONFIG_HOME/x11/xinitrc" export WGETRC="$XDG_CONFIG_HOME/wget/wgetrc" export ZDOTDIR="$XDG_CONFIG_HOME/zsh" # ssh agent and X eval `ssh-agent -s` [ "$(tty)" = "/dev/tty1" ] && startx "$XINITRC"