Add todo overall script and dmenu wrappers

This commit is contained in:
Tyler Perkins 2023-12-09 21:21:16 -05:00
parent 51ba0f68b2
commit d9a2468279
Signed by: tyler
GPG Key ID: 03B27509E17EFDC8
3 changed files with 14 additions and 0 deletions

3
src/dpeek Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
notify-send "Human Call Stack" $(tpeek)

3
src/dpop Executable file
View File

@ -0,0 +1,3 @@
#!/bin/bash
notify-send "Human Call Stack" "$(tpop)"

8
src/todo Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
CHOICE=$(echo -e "Push\nPop\nPeek" | dmenu -i -p "Option >")
case $CHOICE in
"Pop") dpop;;
"Peek") dpeek;;
esac