sdhand / picom

A compositor for X11, active fork.
Other
136 stars 10 forks source link

How can I prevent right click menu from having round corners in Firefox? #5

Closed sdushantha closed 4 years ago

sdushantha commented 4 years ago

Platform

Manjaro Linux x86_64

GPU, drivers, and screen setup

GPU: Intel HD Graphics 6000 Video driver: Intel Corporation HD Graphics 6000

$ glxinfo -B
name of display: :1
display: :1  screen: 0
direct rendering: Yes
Extended renderer info (GLX_MESA_query_renderer):
    Vendor: Intel Open Source Technology Center (0x8086)
    Device: Mesa DRI Intel(R) HD Graphics 6000 (Broadwell GT3)  (0x1626)
    Version: 19.2.7
    Accelerated: yes
    Video memory: 3072MB
    Unified memory: yes
    Preferred profile: core (0x1)
    Max core profile version: 4.5
    Max compat profile version: 3.0
    Max GLES1 profile version: 1.1
    Max GLES[23] profile version: 3.1
OpenGL vendor string: Intel Open Source Technology Center
OpenGL renderer string: Mesa DRI Intel(R) HD Graphics 6000 (Broadwell GT3) 
OpenGL core profile version string: 4.5 (Core Profile) Mesa 19.2.7
OpenGL core profile shading language version string: 4.50
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile

OpenGL version string: 3.0 Mesa 19.2.7
OpenGL shading language version string: 1.30
OpenGL context flags: (none)

OpenGL ES profile version string: OpenGL ES 3.1 Mesa 19.2.7
OpenGL ES profile shading language version string: OpenGL ES GLSL ES 3.10

Environment

Compton version

Compton configuration:

corner-radius: 7;

rounded-corners-exclude = [
    "class_g = 'polybar'",
    "window_type = 'dock'"
];

fading = true;
fade-delta = 3;
fade-in-step = 0.03;
fade-out-step = 0.03;

Steps of reproduction

  1. Open up Firefox
  2. Right click on a webpage
  3. The righ click menu has round corners

Expected behavior

Would be nice not to have round corners

Current Behavior

It currently has round corners

Other details

new

lwilletts commented 4 years ago
rounded-corners-exclude = [
    "window_type = 'popup_menu'"
];
sdushantha commented 4 years ago

@lwilletts Thank you!