aboutsummaryrefslogtreecommitdiff
path: root/dmenu-mail-aliases
blob: 975c681be35b8e424c330528726b8534ec546ee3 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

# Select mail alias via dmenu
# The email address must be the second word in a line of $aliasfile
# Requires: dmenu (or similar)

menu=${MENU:-dmenu}
menuopts="-l 20"
aliasfile="$XDG_CONFIG_HOME/mblaze/aliases"

$menu $menuopts <"$aliasfile" | awk '{print $NF}' 

Generated with cgit - Back to sebastiano.tronto.net