Setting transparency #11
Answered
by
Avdushin
Fuhrerbaumanki
asked this question in
Q&A
-
Which file can be used to configure transparency settings? Let's say I want to make it so that Fire Fox Was transparent0,9 When active and 0.7 when inactive. Where can I set these parameters and which utility is responsible for transparency in general? |
Beta Was this translation helpful? Give feedback.
Answered by
Avdushin
Oct 17, 2023
Replies: 1 comment
-
Greetings @Fuhrerbaumanki! The picom.conf file is responsible for window transparency. In it you can adjust the rules of transparency, blur and other effects for windows... For Example: opacity-rule = [
"80:class_g = 'Bar'", # lemonbar
"100:class_g = 'slop'", # maim
"100:class_g = 'XTerm'",
"100:class_g = 'URxvt'",
"100:class_g = 'kitty'",
"100:class_g = 'Alacritty'",
"80:class_g = 'Polybar'",
"100:class_g = 'code-oss'",
"100:class_g = 'Meld'",
"100:class_g = 'TelegramDesktop'",
"90:class_g = 'Joplin'",
"100:class_g = 'firefox'",
"100:class_g = 'Thunderbird'",
"100:class_g = 'Google-chrome'",
"100:class_g = 'Polybar'",
"99:class_g = 'Thunar'",
"100:class_g = 'Sublime_text'",
"100:class_g = 'Steam'",
]; |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Fuhrerbaumanki
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Greetings @Fuhrerbaumanki! The picom.conf file is responsible for window transparency. In it you can adjust the rules of transparency, blur and other effects for windows...
For Example: