flake-update-20260505
 1# Broot shell integration
 2has broot || return
 3
 4local broot_init
 5for broot_init in \
 6  "${XDG_CONFIG_HOME:-$HOME/.config}/broot/launcher/bash/br" \
 7  "$HOME/.config/broot/launcher/bash/br"; do
 8  if [[ -f "$broot_init" ]]; then
 9    source "$broot_init"
10    break
11  fi
12done