Just wondering if it's possible. Right now, here is an example of MAAttachedWindow as follows:

However, I want to know if I can blur the background outside the window, for example:

Is this possible without using private APIs?
Request code. Well, here's how MAAttachedWindow works. You just feed it normal NSView, and everything else. So here is how I tried to make the blur:
CALayer *backgroundLayer = [CALayer layer]; [view setLayer:backgroundLayer]; [view setWantsLayer:YES]; CIFilter *blurFilter = [CIFilter filterWithName:@"CIGaussianBlur"]; [blurFilter setDefaults]; [view layer].backgroundFilters = [NSArray arrayWithObject:blurFilter];
sudo rm -rf
source share