Skip to content

Instantly share code, notes, and snippets.

@luisivan
Last active August 29, 2015 14:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save luisivan/785dea676ddc6e36e6e3 to your computer and use it in GitHub Desktop.
Save luisivan/785dea676ddc6e36e6e3 to your computer and use it in GitHub Desktop.
Sets GTK3 Dark theme variant on the focused window. I use it for Spotify and Atom
#!/bin/sh
sleep 1
id=`xprop -root | grep "_NET_ACTIVE_WINDOW(WINDOW)" | awk '{print $5}'`
xprop -f _GTK_THEME_VARIANT 8u -set _GTK_THEME_VARIANT dark -id "$id"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment