blob: 50b31fefd864c323f302998a574db70cebc04abd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# Rust binaries
export PATH=$PATH:$HOME/.cargo/bin/
# Local binaries / scripts
export PATH=$PATH:$HOME/.local/bin
export XDG_CONFIG_HOME="$HOME/.config"
# zshrc directory
export ZDOTDIR="$XDG_CONFIG_HOME/zsh"
[[ -f ~/.zshrc ]] && . ~/.zshrc
[ "$(tty)" = "/dev/tty1" ] && ! pidof -s Hyprland >/dev/null 2>&1 && exec Hyprland
|