Skip to content

Instantly share code, notes, and snippets.

@flaviut
Created October 3, 2014 21:24
Show Gist options
  • Save flaviut/b983ebe8e9b3e77af39d to your computer and use it in GitHub Desktop.
Save flaviut/b983ebe8e9b3e77af39d to your computer and use it in GitHub Desktop.
#!/bin/fish
echo '' > ./.borderlands_winid
while true;
wmctrl -l | grep 'Borderlands' | cut -f 1 -d ' ' > /tmp/bl_new_winid_pt1
sort -u /tmp/bl_new_winid_pt1 .borderlands_winid > /tmp/borderlands_winid_new
mv /tmp/borderlands_winid_new ./.borderlands_winid
for id in (cat ./.borderlands_winid);
xdotool windowmap $id;
end
sleep .5
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment