diff --git a/src/dpeek b/src/dpeek new file mode 100755 index 0000000..2d386c3 --- /dev/null +++ b/src/dpeek @@ -0,0 +1,3 @@ +#!/bin/bash + +notify-send "Human Call Stack" $(tpeek) diff --git a/src/dpop b/src/dpop new file mode 100755 index 0000000..c620020 --- /dev/null +++ b/src/dpop @@ -0,0 +1,3 @@ +#!/bin/bash + +notify-send "Human Call Stack" "$(tpop)" diff --git a/src/todo b/src/todo new file mode 100755 index 0000000..5cf53f0 --- /dev/null +++ b/src/todo @@ -0,0 +1,8 @@ +#!/bin/bash + +CHOICE=$(echo -e "Push\nPop\nPeek" | dmenu -i -p "Option >") + +case $CHOICE in + "Pop") dpop;; + "Peek") dpeek;; +esac