7 lines
119 B
Bash
Executable file
7 lines
119 B
Bash
Executable file
#!/bin/bash
|
|
|
|
fontarg=()
|
|
[[ $DMENU_FONT ]] && fontarg=(-fn "$DMENU_FONT")
|
|
|
|
exec /usr/bin/dmenu "${fontarg[@]}" -i "$@"
|
|
|