neodotfiles/user/.bash_profile
Clay Gomera 24a65daaa6 updated
2023-09-11 00:39:36 -04:00

38 lines
1 KiB
Bash

#!/bin/bash
## ____ __
## / __ \_________ _/ /_____
## / / / / ___/ __ `/ //_/ _ \
## / /_/ / / / /_/ / ,< / __/ Clay Gomera (Drake)
## /_____/_/ \__,_/_/|_|\___/ My custom bash_profile config
##
# starting hyprland
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]
then
sh "$HOME/.winitrc"
logout
fi
# clean home
export XDG_DATA_HOME="$HOME/.local/share"
export XDG_CACHE_HOME="$HOME/.cache"
export XDG_CONFIG_HOME="$HOME/.config"
export W3M_DIR="$XDG_DATA_HOME/w3m"
export GTK2_RC_FILES="$HOME/.config/gtk-2.0/gtkrc-2.0"
export WGETRC="$HOME/.config/wget/wgetrc"
export INPUTRC="$HOME/.config/inputrc"
export LESSHISTFILE=-
# user defined environment variables
export WM=Hyprland
export MEDIA_DIR="$HOME/Media"
export TEMP_DIR="$HOME/Temporal"
export RUNNER="wofi --dmenu"
export RUNNER_EX="wofi -p ' Run'"
export EDITOR="$HOME/.local/bin/lvim"
export VISUAL="neovide --neovim-bim $HOME/.local/bin/lvim"
export BROWSER="firefox"
export VIEWER="zathura"
# bashrc
source "$HOME"/.bashrc