Skip to content

How do I disable the dimming of not-focused windows? #689

Answered by Tumetsu
JohannesPertl asked this question in Q&A
Discussion options

You must be logged in to vote

That is compositor setting. You can read about compositors here: https://regolith-desktop.com/docs/howtos/customize-compositor/
I'm using Picom personally so I edited the config file in /home/<home>/.config/regolith2/picom/config. There is "Opacity" section which I edited to following:

#################################
#
# Opacity
#
#################################

inactive-opacity = 1;
active-opacity = 1;
frame-opacity = 1;
inactive-opacity-override = false;

# Dim inactive windows. (0.0 - 1.0)
inactive-dim = 0.00;
# Do not let dimness adjust based on window opacity.
inactive-dim-fixed = true;

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by kgilmer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants