This repository has been archived on 2023-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/.local/bin/dmenuprompt

19 lines
605 B
Bash
Executable File

#!/usr/bin/env sh
######################################################################
# @author : swytch (adapted from Luke Smith - lukesmith.xyz)
# @file : dmenuprompt
# @license : GPLv3
# @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