9 lines
107 B
Bash
9 lines
107 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
WINDOW="$1"
|
||
|
(
|
||
|
eww update $WINDOW-visible=false
|
||
|
sleep .55
|
||
|
eww close $WINDOW-reveal
|
||
|
) &
|