-
Notifications
You must be signed in to change notification settings - Fork 127
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
Support for alpha-background for transparency? #376
Comments
This port implements background transparency in the "mac way" (frosted glass look) by setting the :stipple attribute to "alpha:ALPHA" where alpha is between 0.0 and 1.0. Check the info pages linked in the "Mac" customization group. More importantly, how are you getting |
I'm sorry, I wasn't using the |
Seems to work frame parameter like: I use below on my init.el: (setq default-frame-alist
(append '((background-color . "#f0f0f0")
(cursor-color . "#d00000")
(height . 40)
(alpha . (100 85)))
default-frame-alist)) |
I wish that worked for me, but it does not. Are you able to get the effect while using a posframe or something similar? |
Sorry I didn't understand your intent. With that configuration, the transparency of the child posframe is the same as that of the parent frame. |
Hi, also regarding the alpha-background parameter, is there a way to disable the MacOS "frosted glass look" so it looks more inline with the Linux implementation? |
Perhaps I'm missing something, but it seems like setting frame parameter
alpha-background
do not produce the desired effect of applying transparency to the frame background. What I want to do is display aposframe
withalpha-background
set to 80%. I've had no trouble with this Emacs plus for macOS or standard Emacs for Linux, so I know my config is not the issue.Edit: the frame parameter I need support for is
alpha
rather thanalpha-background
, see comments below.The text was updated successfully, but these errors were encountered: