mirror of
https://github.com/elkowar/dots-of-war.git
synced 2025-04-05 14:23:31 +00:00
19 lines
283 B
Bash
Executable file
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
|