Skip to content

Instantly share code, notes, and snippets.

@Frodox
Last active March 30, 2016 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Frodox/30a94412956f9862960c1f629042b95b to your computer and use it in GitHub Desktop.
Save Frodox/30a94412956f9862960c1f629042b95b to your computer and use it in GitHub Desktop.
fox double border

Had the same problem with gtk3/compton/i3. Using i3 4.8-3, gtk3 3.14.9-1, compton v0.1_beta2-5 on Arch. The other fixes suggested here didn't work for me.

The following fixed the problem for me:

You need to edit the file ~/.config/gtk-3.0/gtk.css

.window-frame, .window-frame:backdrop {
 box-shadow: 0 0 0 black;
 border-style: none;
 margin: 0;
 border-radius: 0;
}

.titlebar {
 border-radius: 0;
}

Source: https://www.reddit.com/r/i3wm/comments/2qk7c3/with_i3_compton_and_gtk3_make_rounded_corners_on/cn6zjme

link: chjj/compton#189 (comment)

see also: numixproject/numix-gtk-theme#206

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment