From 72f807aaf026f607ef9cd91d6702c34e877c45ab Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sat, 14 Feb 2026 22:01:54 -0500 Subject: [PATCH] Test install. --- .bash_aliases | 7 ++++++- setup.sh | 3 +-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.bash_aliases b/.bash_aliases index dbaae94..4fbf4f7 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -1,3 +1,8 @@ +# Source ble.sh if installed. +if [ -f ~/.local/share/blesh/ble.sh ]; then + source -- ~/.local/share/blesh/ble.sh +fi + # Source rust things if they exist if [ -f ~/.cargo/env ]; then . ~/.cargo/env @@ -11,7 +16,7 @@ if [ -f /.dockerenv ]; then alias ,init='apt update -y && apt install -y $DOT_PACKAGES' alias ,swap='swapoff -a && swapon -a' else - export DOT_PACKAGES='git stow vim vim-gtk3 xsel xclip tmux ranger clang yakuake wget curl golang-go' + export DOT_PACKAGES='git stow vim vim-gtk3 xsel xclip tmux ranger clang yakuake wget curl golang-go gawk' alias ,update='sudo apt update -y && sudo apt upgrade -y && sudo apt upgrade --fix-broken --fix-missing --auto-remove' alias ,init='sudo apt update -y && sudo apt install -y $DOT_PACKAGES' # Clear kscreen cached settings diff --git a/setup.sh b/setup.sh index 5da6a54..cd3c219 100755 --- a/setup.sh +++ b/setup.sh @@ -2,11 +2,10 @@ git submodule update --init # Use alias for installing packages so we don't maintain several dependency lists. . .bash_aliases -,init +sudo apt update -y && sudo apt install -y $DOT_PACKAGES go install github.com/arl/gitmux@latest # Install bash line editor for auto completion. git clone --recursive --depth 1 --shallow-submodules https://github.com/akinomyoga/ble.sh.git make -C ble.sh install PREFIX=$(pwd)/.local -echo 'source -- ~/.local/share/blesh/ble.sh' >> .bash_aliases rm -rf ble.sh