Add bash case insensitive completion

This commit is contained in:
2024-01-06 15:35:03 +00:00
parent aaaaf459aa
commit c5e382d0fc

View File

@@ -112,5 +112,11 @@ if ask "Install Timeshift?"; then
fi fi
# Copy configs # Copy configs
echo "Copying configs..." echo "Configuring system..."
cp -rf homeConfigs/.* ~ 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