1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-10-09 19:11:15 +02:00

cleaning up unused scripts

This commit is contained in:
tiynger
2019-10-04 01:15:05 +02:00
parent 28d43dc5c5
commit 48d286f39c
39 changed files with 82 additions and 559 deletions

7
.local/bin/tools/prompt Executable file
View File

@@ -0,0 +1,7 @@
#!/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 -fn Monospace-15 -p "$1" -nb darkred -sb red -sf white -nf gray )" = "Yes" ] && $2