blob: 341a2dcfff3b92af6c96399c4577c7588495ebf1 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#!/bin/sh
# /home/lukasz/.local/bin/tzath
tabbed -c -r 2 zathura -e '' "$@" &
TPID=$!
sleep 0.5
# Send a synthetic Expose by toggling fullscreen briefly
xdotool key --window "$(xdotool search --class tabbed | tail -1)" F11 F11 2>/dev/null
wait $TPID
|