mirror of
https://github.com/LukeSmithxyz/voidrice.git
synced 2026-03-20 01:37:45 +01:00
11 lines
359 B
Bash
Executable File
11 lines
359 B
Bash
Executable File
#!/bin/sh
|
|
# A dmenu binary prompt script.
|
|
# Gives a dmenu prompt labeled with $1 to perform command $2.
|
|
# For example:
|
|
# `./prompt "Do you want to shutdown?" "shutdown -h now"`
|
|
# Import the colors
|
|
. "${HOME}/.cache/wal/colors.sh"
|
|
|
|
[ $(echo -e "No\nYes" | dmenu -i -p "$1" -nb "$color0" -sb "$color1" -sf "$color15" -nf "$color15" -fn mono) \
|
|
== "Yes" ] && $2
|