updated
This commit is contained in:
commit
60c11831de
23 changed files with 989 additions and 0 deletions
61
picom/picom.conf
Normal file
61
picom/picom.conf
Normal file
|
@ -0,0 +1,61 @@
|
|||
corner-radius = 5
|
||||
backend = "glx";
|
||||
vsync = true;
|
||||
glx-no-stencil = true;
|
||||
glx-no-rebind-pixmap = true;
|
||||
use-damage = false;
|
||||
experimental-backends = true;
|
||||
|
||||
#active-opacity = 0.95;
|
||||
#inactive-opacity = 0.85;
|
||||
active-opacity = 1;
|
||||
frame-opacity = 1.0;
|
||||
inactive-opacity-override = false;
|
||||
|
||||
opacity-rule = [
|
||||
"100:class_g != 'kitty'",
|
||||
"90:class_g = 'kitty'",
|
||||
];
|
||||
#inactive-opacity = 0.85;
|
||||
#inactive-opacity-override = true;
|
||||
|
||||
fading = false;
|
||||
fade-in-step = 0.0;
|
||||
fade-out-step = 0.0;
|
||||
fade-delta = 0;
|
||||
|
||||
no-fading-openclose = true;
|
||||
no-fading-destroyed-argb = true;
|
||||
|
||||
shadow = false;
|
||||
shadow-radius = 12;
|
||||
shadow-offset-x = -15;
|
||||
shadow-offset-y = -15;
|
||||
shadow-opacity = 0.5;
|
||||
shadow-ignore-shaped = false;
|
||||
|
||||
wintypes:
|
||||
{
|
||||
tooltip = { shadow = true; opacity = 0.95; };
|
||||
dock = { shadow = false; };
|
||||
dnd = { shadow = false; };
|
||||
popup_menu = { opacity = 0.95; };
|
||||
dropdown_menu = { opacity = 0.95; };
|
||||
};
|
||||
|
||||
blur-method = "dual_kawase";
|
||||
blur-strength = 2;
|
||||
blur-background = true;
|
||||
blur-background-frame = true;
|
||||
blur-background-fixed = true;
|
||||
|
||||
detect-client-opacity = true;
|
||||
mark-wmwin-focused = true;
|
||||
mark-ovredir-focused = true;
|
||||
detect-rounded-corners = true;
|
||||
detect-transient = true;
|
||||
detect-client-leader = true;
|
||||
|
||||
shadow = true;
|
||||
shadow-offset-x = -3;
|
||||
shadow-offset-y = -3;
|
44
picom/picom.conf.bak
Normal file
44
picom/picom.conf.bak
Normal file
|
@ -0,0 +1,44 @@
|
|||
# picom.conf
|
||||
|
||||
# General Settings
|
||||
backend = "glx" # Render backend
|
||||
vsync = true # Vertical sync (for smoother frame rates)
|
||||
|
||||
# Transparency Settings
|
||||
opacity-rule = [
|
||||
"90:class_g = 'Kitty'", # Example: Alacritty terminal with 90% opacity
|
||||
"100:class_g = 'firefox'",
|
||||
"100:class_g = 'i3bar'",
|
||||
"100:class_g = 'i3lock'",
|
||||
"100:class_g = 'Signal'",
|
||||
"100:class_g = 'vesktop'",
|
||||
"100:class_g = 'TelegramDesktop'",
|
||||
"100:class_g = 'Element'"
|
||||
]
|
||||
|
||||
|
||||
# Shadows
|
||||
shadow = true
|
||||
shadow-radius = 12
|
||||
shadow-offset-x = 4
|
||||
shadow-offset-y = 4
|
||||
shadow-opacity = 0.5
|
||||
|
||||
# Rounded Corners
|
||||
corner-radius = 3 # Slightly rounded corners (adjust as needed)
|
||||
rounded-corners = false
|
||||
|
||||
# Fading
|
||||
fading = false # Disable fade effect
|
||||
|
||||
# Transparency
|
||||
opacity = 0.95 # Default opacity of all windows
|
||||
inactive-opacity = 0.95 # Opacity when a window is inactive
|
||||
|
||||
# Background color of transparent windows
|
||||
blur-background = false # Disable blur background (not needed here)
|
||||
|
||||
# Disable animations
|
||||
use-damage = true # Enable or disable damage tracking (no animations)
|
||||
detect-client-opacity = true
|
||||
use-ewmh-active-win = true
|
Loading…
Add table
Add a link
Reference in a new issue