Fix variable handling
This commit is contained in:
parent
303a4cf240
commit
42643cc3d7
1 changed files with 8 additions and 8 deletions
|
@ -1,17 +1,17 @@
|
|||
#!/usr/bin/env bash
|
||||
|
||||
# Arguments for some programs
|
||||
export "ARGS_EZA=--long --binary --mounts --no-git --color=always --color-scale=size --color-scale-mode=fixed --no-quotes --smart-group --almost-all --sort name --group-directories-first"
|
||||
export "ARGS_MOAR=-colors 16M -statusbar bold --style dracula"
|
||||
export ARGS_EZA="--long --binary --mounts --no-git --color=always --color-scale=size --color-scale-mode=fixed --no-quotes --smart-group --almost-all --sort name --group-directories-first"
|
||||
export ARGS_MOAR"=-colors 16M -statusbar bold --style dracula"
|
||||
|
||||
# General
|
||||
export "PAGER=$(which moar) ${ARGS_MOAR}"
|
||||
export PAGER="$(which moar) ${ARGS_MOAR}"
|
||||
|
||||
# Wine
|
||||
export "WINEDEBUG=-all"
|
||||
|
||||
# Rust
|
||||
export "RUSTFLAGS=-Z threads=$(nproc)"
|
||||
export RUSTFLAGS="-Z threads=$(nproc)"
|
||||
|
||||
# PNPM
|
||||
export PNPM_HOME="/home/jeremystartm/.local/share/pnpm"
|
||||
|
@ -21,9 +21,9 @@ case ":$PATH:" in
|
|||
esac
|
||||
|
||||
# GnuPG
|
||||
export GPG_TTY=$(tty)
|
||||
export GPG_TTY="$(tty)"
|
||||
|
||||
# devkitPro
|
||||
export "DEVKITPRO=/opt/devkitpro"
|
||||
export "DEVKITARM=/opt/devkitpro/devkitARM"
|
||||
export "DEVKITPPC=/opt/devkitpro/devkitPPC"
|
||||
export DEVKITPRO="/opt/devkitpro"
|
||||
export DEVKITARM="/opt/devkitpro/devkitARM"
|
||||
export DEVKITPPC="/opt/devkitpro/devkitPPC"
|
||||
|
|
Loading…
Reference in a new issue