1
0

reorganize

This commit is contained in:
dtb
2023-08-26 02:04:10 -04:00
parent 74b7f41cfe
commit 38e5669084
25 changed files with 33 additions and 140 deletions

29
trinitystuff/sh/profile Normal file
View File

@@ -0,0 +1,29 @@
BROWSER=firefox; export BROWSER
EDITOR=/usr/lib/plan9/bin/ed; export EDITOR
PAGER="less"; export PAGER
PLAN9=/usr/local/plan9; export PLAN9
PATH="\
/bin:\
/sbin:\
/usr/bin:\
/usr/games:\
/usr/sbin:\
/usr/local/bin:\
/usr/local/sbin:\
/usr/pkg/bin:\
/usr/pkg/sbin:\
/usr/pkg/qt5/bin:\
/usr/X11R7/bin:\
$HOME/bin/:\
$PLAN9/bin"; export PATH
TERMINAL="uxterm"; export TERMINAL
UNITS_SYSTEM="si"; export UNITS_SYSTEM
VISUAL=vi; export VISUAL
WALLPAPER="$HOME/Pictures/Wallpapers/ghibli_wars.jpg"; export WALLPAPER
# lowest to highest priority
command -v sudo >/dev/null 2>&1 && SUDO="sudo" && export SUDO
command -v doas >/dev/null 2>&1 && SUDO="doas" && export SUDO
ENV=$HOME/.env; export ENV
. $ENV