diff options
author | zachir <zachir@librem.one> | 2023-02-21 13:18:16 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-02-21 13:18:16 -0600 |
commit | f86bb2327fe62cbb604c7861c1f5bdb81563a7c9 (patch) | |
tree | 1182a12bb1d51a65c9d75a468752d44625bab921 /awesome/helper.sh | |
parent | 8d7bb4e84f06957c0f5f4b882193e5d36a31af1c (diff) |
initialize config for wayland
Diffstat (limited to 'awesome/helper.sh')
-rwxr-xr-x | awesome/helper.sh | 13 |
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 -} - -$@ |