diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/zprofile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/shell/zprofile b/shell/zprofile new file mode 100644 index 0000000..5cff05c --- /dev/null +++ b/shell/zprofile @@ -0,0 +1,12 @@ +# Rust binaries +export PATH=$PATH:$HOME/.cargo/bin/ + +# Local binaries / scripts +export PATH=$PATH:$HOME/.local/bin + +# zshrc directory +export ZDOTDIR="$XDG_CONFIG_HOME/zsh" + +[[ -f ~/.zshrc ]] && . ~/.zshrc + +[ "$(tty)" = "/dev/tty1" ] && ! pidof -s Hyprland >/dev/null 2>&1 && exec Hyprland |