#!/usr/bin/env sh choice=$(bluetoothctl devices | sed 's/Device \([A-Z0-9:]*\) \(.*\)/\2\t\1/g' | dmenu -i -p "Device: " | sed 's/.*\t//') if [ ! -z $choice ] then bluetoothctl $1 $choice fi