diff options
author | justsaumit <justsaumit@draconyan.xyz> | 2022-03-01 19:54:04 +0530 |
---|---|---|
committer | justsaumit <justsaumit@draconyan.xyz> | 2022-03-01 19:54:04 +0530 |
commit | 98bbe7bd7fcec209e2408ff0b086858715ca89e0 (patch) | |
tree | d7597d75bbcc7d2b9621693c89058b77c8d504b2 /scripts/prompt | |
parent | 588af889ea41d9dfeb7f2c47c1a7af4de65b4406 (diff) |
updated
Diffstat (limited to 'scripts/prompt')
-rwxr-xr-x | scripts/prompt | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/scripts/prompt b/scripts/prompt deleted file mode 100755 index 9549658..0000000 --- a/scripts/prompt +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/sh -# A dmenu binary prompt script -# Gives dmenu prompt labeled with $1 to perform command $2 -# For example: -# './promptquit "Do you really want to quit?" "shutdown -h now"' - -[ $(echo -e "No\nYes" | dmenu -i -p "$1") \ - == "Yes" ] && $2 - |