dots-of-war/files/scripts/swallow_app.sh
2020-10-30 22:02:38 +02:00

19 lines
283 B
Bash
Executable file

#! /bin/sh
file="$HOME/.local/share/unhide"
app="$1"
#target="$2"
tid="$(xdo id)"
hidecurrent() {
echo "$tid+$app" >> "$file" & xdo hide
}
showlast() {
sid="$(cat $file | grep "$app" | awk -F "+" 'END{print $1}')"
xdo show -r "$sid"
}
hidecurrent & "$@" ; showlast