summaryrefslogtreecommitdiff
path: root/awesome/helper.sh
diff options
context:
space:
mode:
Diffstat (limited to 'awesome/helper.sh')
-rwxr-xr-xawesome/helper.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/awesome/helper.sh b/awesome/helper.sh
deleted file mode 100755
index d51fbab..0000000
--- a/awesome/helper.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-
-ppid() {
- printf "$(ps -o ppid= -p $1)" | xargs
-}
-
-gppid() {
- PARENT=$(ps -o ppid= -p $1)
- GRANDPARENT=$(ps -o ppid= -p $PARENT)
- printf "$GRANDPARENT" | xargs
-}
-
-$@