bin/dboxen

11 lines
251 B
Plaintext
Raw Normal View History

2022-11-24 07:24:12 +01:00
#!/usr/bin/env bash
if ! test -x "$(command -v gum)"; then
echo "Missing dependency: gum"
echo "See github.com/charmbracelet/gum"
exit 1
fi
distrobox enter \
$(distrobox list | tail -n +2 | gum choose --limit=1 | awk '{ print $3 }')