February update

This commit is contained in:
Augusto Gunsch
2022-02-06 14:48:48 -03:00
parent 71a7fe2b72
commit af39225ac2
6 changed files with 51 additions and 26 deletions

8
local/bin/swallow Executable file
View File

@@ -0,0 +1,8 @@
#!/bin/sh
set -e
CMD="$1"
shift 1
WINDOW=$(xdotool getwindowfocus)
xdotool windowunmap "$WINDOW"
$CMD "$@" > /dev/null 2>&1
xdotool windowmap "$WINDOW"