dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit 3e7886ef8e6c3230145bbe683e1768938dec1343
parent a592630d1bd616c9f0ad7889058e0a4f59d5fc41
Author: Alex Balgavy <alex@balgavy.eu>
Date:   Wed, 17 Feb 2021 18:08:37 +0100

Add tuxi, a CLI assistant

Diffstat:
M.gitmodules | 3+++
Mshell/paths | 3+++
Atools/tuxi | 1+
3 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/.gitmodules b/.gitmodules @@ -62,3 +62,6 @@ [submodule "shell/osx-zsh-completions"] path = shell/osx-zsh-completions url = https://github.com/nilsonholger/osx-zsh-completions +[submodule "tools/tuxi"] + path = tools/tuxi + url = https://github.com/Bugswriter/tuxi/ diff --git a/shell/paths b/shell/paths @@ -1,5 +1,6 @@ #!/bin/sh [ -x /usr/libexec/path_helper ] && unset PATH && eval "$(/usr/libexec/path_helper -s)" + [ -d "$HOME/.local/bin" ] || [ -L "$HOME/.local/bin" ] && [ -n "${PATH##*"$HOME/.local/bin"*}" ] && PATH="$HOME/.local/bin:$PATH" [ -d "$GOPATH/bin" ] || [ -L "$GOPATH/bin" ] && [ -n "${PATH##*"$GOPATH/bin"*}" ] && PATH="$GOPATH/bin:$PATH" [ -d "/usr/local/opt/util-linux/bin" ] || [ -L "/usr/local/opt/util-linux/bin" ] && [ -n "${PATH##*"/usr/local/opt/util-linux/bin"*}" ] && PATH="/usr/local/opt/util-linux/bin:$PATH" @@ -15,6 +16,8 @@ [ -d /usr/local/opt/man-db/libexec/bin ] && [ -n "${PATH##*"/usr/local/opt/man-db/libexec/bin"*}" ] && PATH="/usr/local/opt/man-db/libexec/bin:$PATH" [ -d "$DOTFILES/tools/shfm" ] && [ -n "${PATH##*"$DOTFILES/tools/shfm"*}" ] && PATH="$DOTFILES/tools/shfm:$PATH" [ -d "$DOTFILES/tools/pfetch" ] && [ -n "${PATH##*"$DOTFILES/tools/pfetch"*}" ] && PATH="$DOTFILES/tools/pfetch:$PATH" +[ -d "$DOTFILES/tools/tuxi" ] && [ -n "${PATH##*"$DOTFILES/tools/tuxi"*}" ] && PATH="$DOTFILES/tools/tuxi:$PATH" [ -d "/usr/local/Cellar/perl/5.32.1/bin" ] && [ -n "${PATH##*"/usr/local/Cellar/perl/5.32.1/bin"*}" ] && PATH="/usr/local/Cellar/perl/5.32.1/bin:$PATH" + command -v rbenv 1>/dev/null 2>&1 && eval "$(rbenv init -)" export PATH diff --git a/tools/tuxi b/tools/tuxi @@ -0,0 +1 @@ +Subproject commit d2cec5fed959a7277157d4866de61cdc905f5534