#!/bin/bash

fontarg=()
[[ $DMENU_FONT ]] && fontarg=(-fn "$DMENU_FONT")

exec /usr/bin/dmenu "${fontarg[@]}" -i "$@"

