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/bemenuprompt

23 lines
587 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_orange="#f7a583"
col_white="#ebDBB2"
col_gray="#d5c4a1"
col_black="#373737"
prompt="$1"
cmd="$2"
[ "$(printf "yes\nno" | bemenu -p "$prompt")" = "yes" ] && $cmd