blob: 06e9d4385f38920ccd9ef5e946a019f88af43974 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Path variables
export PATH=$PATH:$HOME/.cargo/bin/
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
# [ "$(tty)" = "/dev/tty1" ] && ! pidof -s Hyprland >/dev/null 2>&1 && exec Hyprland
[ "$(tty)" = "/dev/tty1" ] && ! pidof -s niri-session >/dev/null 2>&1 && exec niri-session
|