diff options
author | awy <awy@tutamail.com> | 2024-08-27 03:44:14 +0300 |
---|---|---|
committer | awy <awy@tutamail.com> | 2024-08-27 03:44:14 +0300 |
commit | 8c24921832b2b6dc95bbb41dbfe2de7ff4fcf877 (patch) | |
tree | b8bfc2d150de60d0f989843cb67bc0c6fd380366 /.config/shell | |
parent | 01b0a486d1190b88ee40458b4e16bcd6fa0c93bc (diff) |
update
Diffstat (limited to '.config/shell')
-rw-r--r-- | .config/shell/profile | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/.config/shell/profile b/.config/shell/profile index 1391f75..4388c6d 100644 --- a/.config/shell/profile +++ b/.config/shell/profile @@ -1,2 +1,12 @@ +export PATH="$PATH:$(find ~/.local/bin -type d | paste -sd ':' -)" export ZDOTDIR="$HOME/.config/zsh" -[ "$(tty)" = "/dev/tty1" ] && ! pidof -s Hyprland >/dev/null 2>&1 && exec "/home/awy/.config/hypr/start.sh" +export BROWSER="firefox" +export EDITOR="nvim" + +export XDG_CONFIG_HOME="$HOME/.config" +export XDG_DATA_HOME="$HOME/.local/share" +export XDG_CACHE_HOME="$HOME/.cache" +export XDG_DOWNLOAD_DIR="$HOME/downloads" + +[ "$(tty)" = "/dev/tty1" ] && ! pidof -s Hyprland >/dev/null 2>&1 && exec "$XDG_CONFIG_HOME/hypr/start" + |