27 lines
693 B
Bash
Executable file
27 lines
693 B
Bash
Executable file
#!/bin/zsh
|
|
|
|
export PATH="$PATH:/usr/lib/rustup/bin:$HOME/.local/scripts:$HOME/.local/bin:$HOME/.local/share/gem/ruby/3.0.0/bin/:$HOME/.local/share/cargo/bin"
|
|
|
|
export LC_ALL=en_US.UTF-8
|
|
|
|
export QT_QPA_PLATFORM=wayland-egl
|
|
export MOZ_ENABLE_WAYLAND=1
|
|
export EDITOR=/bin/nvim
|
|
export VISUAL=/bin/nvim
|
|
export BROWSER=/bin/librewolf
|
|
export FILE=/bin/thunar
|
|
export PAGER=/bin/less
|
|
export TERMINAL=/bin/alacritty
|
|
|
|
export GNUPGHOME="$HOME/.config/gnupg"
|
|
export CARGO_HOME="$HOME/.local/share/cargo"
|
|
export RUSTUP_HOME="$HOME/.local/share/rustup"
|
|
export MIX_HOME="$HOME/.local/share/mix"
|
|
|
|
export DEBUGINFOD_URLS="https://debuginfod.archlinux.org/"
|
|
|
|
if [ "$(tty)" = "/dev/tty1" ]; then
|
|
exec sway
|
|
fi
|
|
|