blob: 127c86728408b57615a421d0acda643808413028 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#!/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="urxvt"
# Other vars
export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
export LESSHISTFILE='-'
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"
|