diff options
author | Jackson Taylor <jackson@jacksontaylor.xyz> | 2022-02-03 22:22:11 -0500 |
---|---|---|
committer | Jackson Taylor <jackson@jacksontaylor.xyz> | 2022-02-03 22:28:08 -0500 |
commit | 7888574b1c18c77b75e5c6c5930cd0709f16898a (patch) | |
tree | ed4214ac5696c5641a1d8e3d335d68f7ca72f6d2 /.profile | |
parent | 7434b9127257627a48b7520effd46fb389f1fddd (diff) |
Diffstat (limited to '.profile')
-rw-r--r-- | .profile | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/.profile b/.profile deleted file mode 100644 index 43757e2..0000000 --- a/.profile +++ /dev/null @@ -1,39 +0,0 @@ -# Runs on login and sets some environment variables and stuff - -# set local bin folder and sub folders in PATH -export PATH="$PATH:$(du "$HOME/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')" - -# Set Golang paths and add to PATH -export GOPATH=$HOME/code/go -export GOBIN=$HOME/code/go/bin -export PATH=$PATH:$GOBIN - -# Set wallpaper to use -export WALLPAPER=$HOME/Pictures/wallpapers/spike_and_julia.jpg - -# Set default programs -export BROWSER="brave" -export EDITOR="nvim" -export FILE="ranger" -export READER="zathura" -export TERMINAL="st" - -# Used in weather scripts -export LOCATION="Raleigh" - -# Home dir cleanup -export XAUTHORITY="$XDG_RUNTIME_DIR/Xauthority" # This line will break some DMs. -export NOTMUCH_CONFIG="$HOME/.config/notmuch-config" -export GTK2_RC_FILES="$HOME/.config/gtk-2.0/gtkrc-2.0" -export LESSHISTFILE="-" -export WGETRC="$HOME/.config/wget/wgetrc" -export INPUTRC="$HOME/.config/inputrc" -export ZDOTDIR="$HOME/.config/zsh" -export PASSWORD_STORE_DIR="$HOME/.local/share/password-store" -# This is for signing git commits, unlocks the gpg key -export GPG_TTY=$(tty) - -export SUDO_ASKPASS="$HOME/.local/bin/dmenupass" - -# Start tty if in tty1 and not already running -[ "$(tty)" = "/dev/tty1" ] && ! pgrep -x Xorg >/dev/null && exec startx |