Skip to content

Instantly share code, notes, and snippets.

@kalebo
Created June 16, 2015 16:32
Show Gist options
  • Save kalebo/743b7e40981f0f61d30c to your computer and use it in GitHub Desktop.
Save kalebo/743b7e40981f0f61d30c to your computer and use it in GitHub Desktop.
swapwin
#!/bin/bash
##
# Example usage: swapwin firefox 1280
#
# Be sure to install wmctrl.
##
name=$1
location=$2
wmctrl -r $name -b remove,fullscreen
wmctrl -r $name -b remove,maximized_vert,maximized_horz
wmctrl -r $name -e 0,$location,0,-1,-1
wmctrl -r $name -b add,fullscreen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment