dotfiles/bin/dmenu

8 lines
119 B
Bash
Executable File

#!/bin/bash
fontarg=()
[[ $DMENU_FONT ]] && fontarg=(-fn "$DMENU_FONT")
exec /usr/bin/dmenu "${fontarg[@]}" -i "$@"