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
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
# Arguments for some programs
|
# 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_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_MOAR"=-colors 16M -statusbar bold --style dracula"
|
||||||
|
|
||||||
# General
|
# General
|
||||||
export "PAGER=$(which moar) ${ARGS_MOAR}"
|
export PAGER="$(which moar) ${ARGS_MOAR}"
|
||||||
|
|
||||||
# Wine
|
# Wine
|
||||||
export "WINEDEBUG=-all"
|
export "WINEDEBUG=-all"
|
||||||
|
|
||||||
# Rust
|
# Rust
|
||||||
export "RUSTFLAGS=-Z threads=$(nproc)"
|
export RUSTFLAGS="-Z threads=$(nproc)"
|
||||||
|
|
||||||
# PNPM
|
# PNPM
|
||||||
export PNPM_HOME="/home/jeremystartm/.local/share/pnpm"
|
export PNPM_HOME="/home/jeremystartm/.local/share/pnpm"
|
||||||
|
@ -21,9 +21,9 @@ case ":$PATH:" in
|
||||||
esac
|
esac
|
||||||
|
|
||||||
# GnuPG
|
# GnuPG
|
||||||
export GPG_TTY=$(tty)
|
export GPG_TTY="$(tty)"
|
||||||
|
|
||||||
# devkitPro
|
# devkitPro
|
||||||
export "DEVKITPRO=/opt/devkitpro"
|
export DEVKITPRO="/opt/devkitpro"
|
||||||
export "DEVKITARM=/opt/devkitpro/devkitARM"
|
export DEVKITARM="/opt/devkitpro/devkitARM"
|
||||||
export "DEVKITPPC=/opt/devkitpro/devkitPPC"
|
export DEVKITPPC="/opt/devkitpro/devkitPPC"
|
||||||
|
|
Loading…
Reference in a new issue