
Cool Effect
Source (link to git-repo or to original if based on someone elses unmodified work): Add the source-code for this project on opencode.net
6 years ago
0.0.1: first release.
psyburr
1 month ago
Report
ben2talk
2 months ago
Report
cubancigar11
3 months ago
Report
mishacorvus
1 year ago
-Video doesn't work
-No updates since 2016
Report
ngraham
2 years ago
Report
koma111
2 years ago
Report
brunofin
2 years ago
Report
armakuni
4 years ago
I have visual glitches using it with LibreOffice, if you try to open a color palette, it isn't entire visible with active effect.
Is there a way to exclude apps like LibreOffice within the script?
Report
Saverios
4 years ago
You really should add some description, like: "This effect makes new windows appear on screen as if they are being zoomed-in (i.e. they start small and then grow to their normal size). It currently works with all windows.", and a corresponding title, like "Cool growing window effect".
Keep up the good work!
Report
elav
6 years ago
Report
tsujan
6 years ago
Report
coon
6 years ago
Good job. Thanks.
Report
Palewolf
6 years ago
Report
EthanAdams
6 years ago
Report
Fri13
6 years ago
No screenshot and no description of the functionality and the name is lame.
Report
bvbfan
7 years ago
isfadeWindow: function(window) {
return !window.deleted && !window.desktopWindow && window.onCurrentDesktop
&& window.visible && !window.skipSwitcher && !window.utility
&& !effect.isGrabbed(window, Effect.WindowAddedGrabRole)
&& !effect.isGrabbed(window, Effect.WindowClosedGrabRole)
&& !CoolEffect.isLoginWindow(window);
},
Reload effect, enjoy!
Report
elav
6 years ago
Thanks
Report
bvbfan
6 years ago
isfadeWindow: function(window) {
if (window.deleted && effect.isGrabbed(window, Effect.WindowClosedGrabRole))
{
return false;
} else if (!window.deleted && effect.isGrabbed(window, Effect.WindowAddedGrabRole))
{
return false;
}
return window.onCurrentDesktop && !CoolEffect.isLoginWindow(window) && ! window.desktopWindow &&
!window.utility && !window.minimized;
},
with above one
Report
elav
6 years ago
Report
vgezer
7 years ago
Report
msx
7 years ago
It would be great to have the ability to check where should the effect apply whether it be windows, tooltips or the pop-up menus like the ones associated to the right-click.
Again, thanks for this effect, it would be nice to see it integrated to default KDE SC in the future.
Report
Jakin0605
7 years ago
However i think i would like it just on tooltips, and menus, its SUPER smooth.
I don't really care for it on the windows themselves.
Report
kalmar
7 years ago
kwrite `find ./.kde*|grep cooleffect|grep main.js` &
edit the last return statement in
isfadeWindow function
to your liking
Save & reload Cooleffect.
Report
saabzero
7 years ago
I was wondering what possible window properties there are? is there a documentation somewhere?
thanks in advance!
Report
saabzero
7 years ago
Report