Skip to content

Instantly share code, notes, and snippets.

@rien333
Created January 10, 2019 11:57
Show Gist options
  • Save rien333/be1898701272ce8a9891f1e0dfa526f4 to your computer and use it in GitHub Desktop.
Save rien333/be1898701272ce8a9891f1e0dfa526f4 to your computer and use it in GitHub Desktop.
#!/bin/bash
xidfile="/run/user/"$(id -u)"/zathura-tabbed.xid"
wmclass="zathura-tabbed"
xid=$(cat "$xidfile") && xprop -id "$xid"
read xid < <(tabbed -cd -n "$wmclass" -p -1 2> /dev/null)
wmctrl -i -r "$xid" -b add,maximized_vert,maximized_horz
echo "$xid" > "$xidfile"
zathura -e "$xid" "$@" &> /dev/null &
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment