1
0

some changes to dots

This commit is contained in:
dtb
2024-05-06 00:27:56 -06:00
parent 0faed1a871
commit 81084e0b27
7 changed files with 90 additions and 60 deletions

View File

@@ -1,4 +1,4 @@
BROWSER=firefox; export BROWSER
BROWSER=netsurf-gtk; export BROWSER
test -f /usr/lib/plan9 && PLAN9=/usr/lib/plan9
test -f /usr/local/plan9 && PLAN9=/usr/local/plan9
export PLAN9
@@ -16,14 +16,21 @@ PATH="\
/usr/pkg/qt5/bin:\
/usr/X11R7/bin:\
$HOME/bin/:\
$HOME/.local/bin:\
$HOME/src/dist:\
$PLAN9/bin:\
$PATH"; export PATH
PAGER="less"; export PAGER
PAGER=less; export PAGER
TERMINAL=urxvt; export TERMINAL
UNITS_SYSTEM=si; export UNITS_SYSTEM
VISUAL=vi; export VISUAL
if command -v hx >/dev/null
then VISUAL=hx
elif command -v vi >/dev/null
then VISUAL=vi
fi
export VISUAL
WALLPAPER="$HOME/Pictures/Wallpapers/ghibli_wars.jpg"; export WALLPAPER
XDG_RUNTIME_DIR="/tmp/$(id -u)-runtime-dir"; export XDG_RUNTIME_DIR
# lowest to highest priority
command -v sudo >/dev/null 2>&1 && SUDO="sudo" && export SUDO