2023-02-20 00:41:01 +00:00
|
|
|
#!/bin/bash
|
2022-07-05 21:06:56 +00:00
|
|
|
## ____ __
|
|
|
|
## / __ \_________ _/ /_____
|
|
|
|
## / / / / ___/ __ `/ //_/ _ \
|
|
|
|
## / /_/ / / / /_/ / ,< / __/ Clay Gomera (Drake)
|
|
|
|
## /_____/_/ \__,_/_/|_|\___/ My custom bash_profile config
|
|
|
|
##
|
|
|
|
|
2023-09-10 06:29:11 +00:00
|
|
|
# starting hyprland
|
2023-02-20 00:41:01 +00:00
|
|
|
if [ -z "$DISPLAY" ] && [ "$(tty)" = "/dev/tty1" ]
|
2022-06-07 02:15:35 +00:00
|
|
|
then
|
2023-09-08 18:43:08 +00:00
|
|
|
sh "$HOME/.winitrc"
|
2022-07-19 16:28:35 +00:00
|
|
|
logout
|
2022-06-07 02:15:35 +00:00
|
|
|
fi
|
|
|
|
|
2023-06-20 14:17:21 +00:00
|
|
|
# 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"
|
2023-07-24 03:53:08 +00:00
|
|
|
export LESSHISTFILE=-
|
2022-06-07 02:15:35 +00:00
|
|
|
|
2023-09-11 04:39:36 +00:00
|
|
|
# user defined environment variables
|
|
|
|
export WM=Hyprland
|
2023-09-08 18:43:08 +00:00
|
|
|
export MEDIA_DIR="$HOME/Media"
|
|
|
|
export TEMP_DIR="$HOME/Temporal"
|
|
|
|
export RUNNER="wofi --dmenu"
|
|
|
|
export RUNNER_EX="wofi -p ' Run'"
|
2023-09-11 04:39:36 +00:00
|
|
|
export EDITOR="$HOME/.local/bin/lvim"
|
|
|
|
export VISUAL="neovide --neovim-bim $HOME/.local/bin/lvim"
|
|
|
|
export BROWSER="firefox"
|
|
|
|
export VIEWER="zathura"
|
2023-09-08 18:43:08 +00:00
|
|
|
|
2023-09-10 06:29:11 +00:00
|
|
|
# bashrc
|
|
|
|
source "$HOME"/.bashrc
|