mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
19 lines
273 B
Bash
Executable file
19 lines
273 B
Bash
Executable file
#! /bin/bash
|
|
|
|
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
|