Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove commas from lists on the sample config #43

Open
wants to merge 1 commit into
base: next
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions picom.sample.conf
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ inactive-opacity-override = true;
# Specify a list of conditions of windows that should never be considered focused.
# focus-exclude = []
focus-exclude = [
"class_g = 'Cairo-clock'" ,
"class_g = 'Cairo-clock'"
];

# Use fixed inactive dim value, instead of adjusting according to window opacity.
Expand Down Expand Up @@ -210,7 +210,7 @@ blur-background-exclude = [
"class_g = 'Discord'",
"class_g = 'Dunst'",
"class_g = 'Peek'",
"class_g *?= 'slop'",
"class_g *?= 'slop'"
];

#################################
Expand Down Expand Up @@ -435,5 +435,5 @@ wintypes:
opacity-rule = [
"100:class_g = 'St' && focused",
"50:class_g = 'St' && !focused",
"100:fullscreen",
"100:fullscreen"
];