Skip to content

Instantly share code, notes, and snippets.

@BryceCicada
Created December 1, 2016 14:32
Show Gist options
  • Save BryceCicada/b4a88017ea20c47524fc4a3a1b4d109f to your computer and use it in GitHub Desktop.
Save BryceCicada/b4a88017ea20c47524fc4a3a1b4d109f to your computer and use it in GitHub Desktop.
Make windows sticky
#!/bin/bash
MATCH=$1;
for i in $(wmctrl -l | grep ${MATCH} | awk '{print $1}'); do wmctrl -b add,sticky -i -r ${i}; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment