summaryrefslogtreecommitdiff
path: root/dotfiles/system/.local/bin/prompt
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/system/.local/bin/prompt')
-rwxr-xr-xdotfiles/system/.local/bin/prompt8
1 files changed, 0 insertions, 8 deletions
diff --git a/dotfiles/system/.local/bin/prompt b/dotfiles/system/.local/bin/prompt
deleted file mode 100755
index 666434f..0000000
--- a/dotfiles/system/.local/bin/prompt
+++ /dev/null
@@ -1,8 +0,0 @@
-#!/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"`
-
-[ "$(printf "No\\nYes" | dmenu -i -p "$1" -nb darkred -sb red -sf white -nf gray )" = "Yes" ] && $2