-
-
Save taiwbi/0c33fa7afaa65d2a593e2f77fb3d4af6 to your computer and use it in GitHub Desktop.
Thanks so much! I found that 0.85 works a bit better for me.
I really appreciate you updating this, by the way. I see you have made a bunch of changes since I first started using this
You're welcome! I'm glad you liked it :)
Thanks so much! I found that 0.85 works a bit better for me.
I really appreciate you updating this, by the way. I see you have made a bunch of changes since I first started using this
Hello, just for your information: with the coming Blur-my-Shell v60 for GNOME 46 (which I will probably backport to GNOME 45), you should not be using the "No artefacts" option in the preference if you don't really need it, as the applications blur really has been improved and this option degrades the GNOME performances a lot!
It will be disabled automatically if you enabled it before this update, but I say it in the case somebody decides to simply enable this option without testing without it before :)
@aunetx Hi, thank you for the hard work on this great extension and all the improvements. And thank you for informing us here :)
Thank you so much for the CSS, you should make an style for Gradience. ❤️
@rahimgg-github You probably have an extensions that creates a layer above your desktop. Something like Desktop Icon NG. What is it though?
@taiwbi thanks I didn't notice that, but still can't find a solution for trying to redraw the window
Screencast.from.2024-04-19.18-23-41.mp4
Is it possible for you to add support for Rhythmbox sidebar? Thanks in advance!
@Karol739 I will try to convince myself to do that but lollypop is a great music player and transparent sidebar already works with it
@taiwbi thanks I didn't notice that, but still can't find a solution for trying to redraw the window
Screencast.from.2024-04-19.18-23-41.mp4
@rahimgg-github I'm honestly not sure. Update "blur my shell" extension to the latest version, if didn't work, try the "No Artifact" setting. It shouldn't be necessary though
@Karol739 DONE!
very good work and something Nautilus should adopt - thank you
Outstanding! You made Gnome 10x prettier.
Outstanding! You made Gnome 10x prettier.
Yeah but the frame rate drops when 5 windows are open and on top of each other
Outstanding! You made Gnome 10x prettier.
Yeah but the frame rate drops when 5 windows are open and on top of each other
If you want blur on GNOME, that's what you should pay for because mutter does not support background blur.
Rounded corners extension doesn't work when I set "Enabled all default"
how to get blur on right context menu and titlebar
how to get blur on right context menu and titlebar
@kprabhat248 Using this awesome work of art: https://github.com/aunetx/blur-my-shell
Thanks for this, looks beautiful on swayfx.
The only thing I don't like is when the nautilus window gets small and the sidebar is hidden, the whole window goes transparent. Is there any way to change this? I think it would be more consistent if the main section is always opaque and only the sidebar goes transparent.
I think it's because content-pane
doesn't exist in this mode.
Any help appreciated :-)
Update: here is some CSS that works well for my use case. The only thing I can't work out is why the header goes transparent when not focused
.nautilus-window {
background: transparent;
}
.content-pane, gridview {
background: white;
}
.sidebar-pane {
background: transparent;
}
.nautilus-window > dialog-host > widget > widget > widget > toastoverlay > overlay-split-view > widget > toolbarview > .top-bar > windowhandle > .collapse-spacing {
background: alpha(white, 1);
}
.bottom-bar {
background: alpha(white, 1);
}
Result:
-
Full size
(see below) -
Small size
(see below) -
Small size, not focused -- why is the header transparent?
(see below)
In fact this was all I needed:
.nautilus-window {
background: transparent;
}
.content-pane, .undershoot-top.undershoot-bottom {
background: white;
}
.sidebar-pane {
background: transparent;
}
Now I have:
(using blur my shell for testing, it looks normal in real life)
In my opinion this is more consistent :-)
gnome browser?
or proyect is died?
Is it possible to blur Gnome Text Editor?
Is it possible to blur Gnome Text Editor?
@Infiniti151 It is.
Add this to end of the CSS file and use blur my shell to blur it:
.org-gnome-TextEditor textview.editor, .org-gnome-TextEditor textview.editor * {
background: transparent;
}
Is it possible to blur Gnome Text Editor?
@Infiniti151 It is.
Add this to end of the CSS file and use blur my shell to blur it:
.org-gnome-TextEditor textview.editor, .org-gnome-TextEditor textview.editor * { background: transparent; }
Thanks! That worked great. The only problem I'm seeing is the color of selected text also became transparent. I can see the selected text in the overview map, but not in the editor. How to change that color? Also found out another issue that the context menu inside the editor is transparent as well
@Infiniti151 Sorry, my bad. Here is the correct snippet:
.org-gnome-TextEditor textview.editor, .org-gnome-TextEditor textview.editor gutter, .org-gnome-TextEditor textview.editor border {
background: transparent;
}
@Infiniti151 Sorry, my bad. Here is the correct snippet:
.org-gnome-TextEditor textview.editor, .org-gnome-TextEditor textview.editor gutter, .org-gnome-TextEditor textview.editor border { background: transparent; }
Worked perfectly! Thanks
@dylankird On line 11 and line 76,
0.8
is the opacity. Change them to the number you want. Both of them should be equal though...