Test install.

This commit is contained in:
2026-02-14 22:01:54 -05:00
parent 18baf1e1a6
commit 4efb2b1198
2 changed files with 7 additions and 3 deletions

View File

@@ -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 # Source rust things if they exist
if [ -f ~/.cargo/env ]; then if [ -f ~/.cargo/env ]; then
. ~/.cargo/env . ~/.cargo/env
@@ -11,7 +16,7 @@ if [ -f /.dockerenv ]; then
alias ,init='apt update -y && apt install -y $DOT_PACKAGES' alias ,init='apt update -y && apt install -y $DOT_PACKAGES'
alias ,swap='swapoff -a && swapon -a' alias ,swap='swapoff -a && swapon -a'
else 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 ,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' alias ,init='sudo apt update -y && sudo apt install -y $DOT_PACKAGES'
# Clear kscreen cached settings # Clear kscreen cached settings

View File

@@ -2,11 +2,10 @@
git submodule update --init git submodule update --init
# Use alias for installing packages so we don't maintain several dependency lists. # Use alias for installing packages so we don't maintain several dependency lists.
. .bash_aliases . .bash_aliases
,init sudo apt update -y && sudo apt install -y $DOT_PACKAGES
go install github.com/arl/gitmux@latest go install github.com/arl/gitmux@latest
# Install bash line editor for auto completion. # Install bash line editor for auto completion.
git clone --recursive --depth 1 --shallow-submodules https://github.com/akinomyoga/ble.sh.git git clone --recursive --depth 1 --shallow-submodules https://github.com/akinomyoga/ble.sh.git
make -C ble.sh install PREFIX=$(pwd)/.local make -C ble.sh install PREFIX=$(pwd)/.local
echo 'source -- ~/.local/share/blesh/ble.sh' >> .bash_aliases
rm -rf ble.sh rm -rf ble.sh