Idk I got crazy but mostly nyxt
This commit is contained in:
parent
263d10c080
commit
1b2ce4207d
12 changed files with 198 additions and 137 deletions
20
picom.conf
20
picom.conf
|
@ -24,7 +24,7 @@ shadow = true;
|
|||
shadow-radius = 38;
|
||||
|
||||
# The opacity of shadows. (0.0 - 1.0, defaults to 0.75)
|
||||
shadow-opacity = .99;
|
||||
shadow-opacity = 1.0;
|
||||
|
||||
# The left offset for shadows, in pixels. (defaults to -15)
|
||||
shadow-offset-x = -20;
|
||||
|
@ -68,6 +68,8 @@ shadow-offset-y = -20;
|
|||
# shadow-exclude = []
|
||||
shadow-exclude = [
|
||||
"name = 'Notification'",
|
||||
"name = 'Projection Window'",
|
||||
"name = 'Video'",
|
||||
"class_g = 'Conky'",
|
||||
# "class_g = 'firefox'",
|
||||
# "class_g = 'Alacritty'",
|
||||
|
@ -107,6 +109,8 @@ fade-out-step = 0.08;
|
|||
# Specify a list of conditions of windows that should not be faded.
|
||||
# don't need this, we disable fading for all normal windows with wintypes: {}
|
||||
fade-exclude = [
|
||||
"name = 'Projection Window'",
|
||||
"name = 'Video'",
|
||||
"class_g = 'slop'" # maim
|
||||
]
|
||||
|
||||
|
@ -124,7 +128,7 @@ fade-exclude = [
|
|||
|
||||
# Opacity of inactive windows. (0.1 - 1.0, defaults to 1.0)
|
||||
# inactive-opacity = 1
|
||||
inactive-opacity = 0.75;
|
||||
inactive-opacity = 0.55;
|
||||
|
||||
# Opacity of window titlebars and borders. (0.1 - 1.0, disabled by default)
|
||||
# frame-opacity = 1.0
|
||||
|
@ -141,14 +145,17 @@ inactive-opacity-override = false;
|
|||
active-opacity = 0.75;
|
||||
|
||||
# Dim inactive windows. (0.0 - 1.0, defaults to 0.0)
|
||||
# inactive-dim = 0.0
|
||||
inactive-dim = 0.4
|
||||
|
||||
# Specify a list of conditions of windows that should always be considered focused.
|
||||
# focus-exclude = []
|
||||
focus-exclude = [
|
||||
"class_g = 'Cairo-clock'",
|
||||
"class_g = 'Bar'", # lemonbar
|
||||
"class_g = 'slop'" # maim
|
||||
"name = 'Projection Window'",
|
||||
"class_g = 'slop'", # maim
|
||||
"name = 'Video'",
|
||||
"class_g = 'mpv'"
|
||||
];
|
||||
|
||||
# Use fixed inactive dim value, instead of adjusting according to window opacity.
|
||||
|
@ -180,6 +187,8 @@ opacity-rule = [
|
|||
"100:class_g = 'dolphin'",
|
||||
"100:class_g = 'mpv'",
|
||||
"100:class_g = 'libreoffice'",
|
||||
"100:name = 'Projection Window'",
|
||||
"100:name = 'Video'",
|
||||
"100:_NET_WM_STATE@[0]:32a *= '_NET_WM_STATE_FULLSCREEN'",
|
||||
"0:_NET_WM_STATE@[0]:32a *= '_NET_WM_STATE_HIDDEN'",
|
||||
"0:_NET_WM_STATE@[1]:32a *= '_NET_WM_STATE_HIDDEN'",
|
||||
|
@ -251,6 +260,9 @@ blur-background-exclude = [
|
|||
"class_g = 'slop'",
|
||||
"_GTK_FRAME_EXTENTS@:c",
|
||||
"class_g = 'soffice'",
|
||||
"name = 'Display Window'",
|
||||
"name = 'Video'",
|
||||
"name = 'Projection Window'",
|
||||
# "window_type = '_NET_WM_WINDOW_TYPE_NOTIFICATION'"
|
||||
"window_type = 'notification'"
|
||||
];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue