diff options
author | Joshua Yun <joshua@joshuayun.com> | 2025-08-10 16:00:03 -0400 |
---|---|---|
committer | Joshua Yun <joshua@joshuayun.com> | 2025-08-10 16:00:03 -0400 |
commit | c9f1a2f591898e4c157f4324b716c3367a53413b (patch) | |
tree | 6c2fc35529e5c0eb234c3819f53c94c2596d5d18 /shell/zprofile | |
parent | df1a37cbc070b355e7be99840a0f4fd47279f39e (diff) | |
download | config-c9f1a2f591898e4c157f4324b716c3367a53413b.tar.gz |
config changes 8/10/25laptop
Diffstat (limited to 'shell/zprofile')
-rw-r--r-- | shell/zprofile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/shell/zprofile b/shell/zprofile index 50b31fe..4b7b9f9 100644 --- a/shell/zprofile +++ b/shell/zprofile @@ -1,14 +1,18 @@ -# Rust binaries +# Path variables export PATH=$PATH:$HOME/.cargo/bin/ - -# Local binaries / scripts export PATH=$PATH:$HOME/.local/bin +export PATH=$PATH:$HOME/.local/riscv/bin +# XDG Variables export XDG_CONFIG_HOME="$HOME/.config" # zshrc directory export ZDOTDIR="$XDG_CONFIG_HOME/zsh" +# Make Electron apps behave well +export ELECTRON_OZONE_PLATFORM_HINT=wayland + [[ -f ~/.zshrc ]] && . ~/.zshrc +# Open hyprland only on tty 1 [ "$(tty)" = "/dev/tty1" ] && ! pidof -s Hyprland >/dev/null 2>&1 && exec Hyprland |