19 lines
600 B
Bash
Executable File
19 lines
600 B
Bash
Executable File
#!/bin/sh
|
|
|
|
######################################################################
|
|
# @author : swytch (adapted from Luke Smith - lukesmith.xyz)
|
|
# @file : dmenuprompt
|
|
# @license : MIT
|
|
# @created : Wednesday May 20, 2020 18:10:13 CEST
|
|
#
|
|
# @description : dmenu prompt ($1) to perform a command ($2)
|
|
######################################################################
|
|
|
|
|
|
col_darkred="#9d0006"
|
|
col_red="#cc241d"
|
|
col_white="#ebDBB2"
|
|
col_gray="#d5c4a1"
|
|
|
|
[ "$(printf "yes\nno" | dmenu -i -p "$1" -nb "$col_darkred" -sb "$col_red" -sf "$col_white" -nf "$col_gray" )" = "yes" ] && $2
|