summaryrefslogtreecommitdiff
path: root/choose
blob: 1b989fde5f4c71ced37892218f5d5157cb5f7f18 (plain) (blame)
1
2
3
4
5
6
7
#!/bin/sh
### this script is meant to take a \n delimited list of things
### then give the user a way of selecting on of them.
### it should output the selection on a line by itself.
### and use $1 as the message to give to the user.
sed 's|,|\\,|g;s|:|\\:|g' | tr '\n' ',' | rev | cut -b2- | rev | tr '\n' '\0' | xargs -0 xmessage -nearmouse "$1" -print -buttons
#dmenu -p "$1"