From 200f9b5a220fa80f7028b35205de23d3d51fe312 Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sat, 14 Feb 2026 21:48:25 -0500 Subject: [PATCH] Install ble.sh in setup script. --- .bash_aliases | 1 - .config/yakuakerc | 52 ----------------------------------------------- .gitignore | 2 ++ setup.sh | 6 ++++++ 4 files changed, 8 insertions(+), 53 deletions(-) delete mode 100644 .config/yakuakerc diff --git a/.bash_aliases b/.bash_aliases index adf46c4..dbaae94 100644 --- a/.bash_aliases +++ b/.bash_aliases @@ -111,4 +111,3 @@ HISTCONTROL=ignoredups:erasedups # When the shell exits, append to the history file instead of overwriting it. shopt -s histappend -source -- ~/.local/share/blesh/ble.sh diff --git a/.config/yakuakerc b/.config/yakuakerc deleted file mode 100644 index 12b814d..0000000 --- a/.config/yakuakerc +++ /dev/null @@ -1,52 +0,0 @@ -[Animation] -AutoOpen=false -Frames=17 -PollInterval=500 -UseVMAssist=true - -[Appearance] -BackgroundColor=#000000 -BackgroundColorOpacity=0.4 -Blur=false -KeyboardInputBlockIndicatorColor=#FF0000 -KeyboardInputBlockIndicatorDuration=250 -Skin=default -SkinInstallWithKns=false -TerminalHighlightDuration=250 -Translucency=false - -[Behavior] -FocusFollowMouse=false -OpenAfterStart=false -RememberFullscreen=false - -[Desktop Entry] -DefaultProfile= - -[Dialogs] -ConfirmQuit=true -FirstRun=false - -[Favorite Profiles] -Favorites= - -[KFileDialog Settings] -detailViewIconSize=0 - -[PrintOptions] -PrinterFriendly=true -ScaleOutput=true - -[Window] -DynamicTabTitles=false -Height=60 -KeepAbove=true -KeepOpen=true -KeepOpenAfterLastSessionCloses=false -Position=50 -Screen=0 -ShowOnAllDesktops=true -ShowSystrayIcon=true -ShowTabBar=true -ShowTitleBar=true -ToggleToFocus=false \ No newline at end of file diff --git a/.gitignore b/.gitignore index d9cea87..23f2743 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,8 @@ .config/Code/rapid_render.json .config/Code/Network* **/.config/.brightness +.local/share/fonts/.uuid + # Byte-compiled / optimized / DLL files *__pycache__/ diff --git a/setup.sh b/setup.sh index 9d7f067..5da6a54 100755 --- a/setup.sh +++ b/setup.sh @@ -4,3 +4,9 @@ git submodule update --init . .bash_aliases ,init 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