From c5e382d0fcba88d5fe96b35eaa190f46f837f908 Mon Sep 17 00:00:00 2001 From: TrudeEH Date: Sat, 6 Jan 2024 15:35:03 +0000 Subject: [PATCH] Add bash case insensitive completion --- install.sh | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 959aae99..8250a96d 100755 --- a/install.sh +++ b/install.sh @@ -112,5 +112,11 @@ if ask "Install Timeshift?"; then fi # Copy configs -echo "Copying configs..." +echo "Configuring system..." cp -rf homeConfigs/.* ~ + +# Enable bash case insensitive completion +cat /etc/inputrc | grep completion-ignore-case +if [ $? == 1 ]; then + echo 'set completion-ignore-case On' | sudo tee -a /etc/inputrc +fi