Please open Telegram to view this post
VIEW IN TELEGRAM
Notification Configurator extension is finally available on gnome extensions! Feature recap:
✦ Notification Rate Limiting - Prevent frequent notifications from the same app within a configurable time threshold
✦ Custom Color Themes - Set custom colors for notifications per application (background, noscript, body, app name, time)
✦ Notification Positioning - Control where notifications appear on screen (fill, left, center, right)
✦ Filter Notifications - Hide or remove notifications based on specific criteria
✦ Test Notifications - Send test notifications to preview your settings instantly
✦ Real-time Configuration - Changes take effect immediately without requiring restarts
TL;DR Feel like native Gnome notifications suck? Install this
➡️ Gnome Extensions Page
➡️ GitHub
✦ Notification Rate Limiting - Prevent frequent notifications from the same app within a configurable time threshold
✦ Custom Color Themes - Set custom colors for notifications per application (background, noscript, body, app name, time)
✦ Notification Positioning - Control where notifications appear on screen (fill, left, center, right)
✦ Filter Notifications - Hide or remove notifications based on specific criteria
✦ Test Notifications - Send test notifications to preview your settings instantly
✦ Real-time Configuration - Changes take effect immediately without requiring restarts
TL;DR Feel like native Gnome notifications suck? Install this
Please open Telegram to view this post
VIEW IN TELEGRAM
- Show notifications in fullscreen (no need for separate extension)
- Rate limiting fixes
TODO from Reddit feedback
- Change notifications vertical position
- Regex matching
- Auto-dismiss rate-limited notifications
- Move notification center on a panel among with notification banners
- Clear all app notifications when it's opened
Investigating
- Possibility to add swipe gestures
- Possibility to dismiss on hover instead of hiding
- Adjust notification animations
P.S. GitHub CI now generates releases with build & changelog
Please open Telegram to view this post
VIEW IN TELEGRAM
Notification timeout, RegExp and better testing — in review on EGO, available on
UPD: Approved on EGO
➡️ Previous update
➡️ Gnome Extensions Page
➡️ GitHub
mainUPD: Approved on EGO
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
👏1
Notification Configurator was updated on EGO
- Regex matching
- Configurable font sizes
- Localization
P.S. Check out Customise and Move Notifications on GNOME with this Extension by OMG!Ubuntu founder 🏆
Previous update | EGO | GitHub
- Regex matching
- Configurable font sizes
- Localization
P.S. Check out Customise and Move Notifications on GNOME with this Extension by OMG!Ubuntu founder 🏆
Previous update | EGO | GitHub
🏆1
ExposedCat's blog
P.S. It works, but the service broke the GPU holder
Just got a refund and got myself a brand new B650+ (no bluetooth because it sucks and I have to use adapter anyways) $50 cheaper
Yippee!
Yippee!
👍4
#TIL you can align post previews in Instagram (hold post > options)
🤯1
Animations in Godot: late evening findings I
Given a model skeleton (e.g. arms + body + legs) and some animations for it, we can setup a simple Start → Idle pipeline so that model goes into Idle animation on start.
For movement animation, we need to blend 4-5 animations into one based on character's direction and speed, and there is a
Now, with
and
we will have a smooth movement animation by providing a point on this chart which will represent character's movement state
Given a model skeleton (e.g. arms + body + legs) and some animations for it, we can setup a simple Start → Idle pipeline so that model goes into Idle animation on start.
For movement animation, we need to blend 4-5 animations into one based on character's direction and speed, and there is a
BlendSpace2D node that does exactly this: given calculated blend position it's mapped onto a 2D space with sideways animation on the negative/positive X, forward at the negative Y and backwards at the positive Y, blending those into a final one based on the input.Now, with
Start → IW
and
Backwards
︲
Sideways ‒ Idle ‒ Sideways
︲
Forward
we will have a smooth movement animation by providing a point on this chart which will represent character's movement state
Animations in Godot: late evening findings II
That being said, we can easily add a short one-time animation such as Cheering, by doing
where
This will, however, result in a character sliding on a floor like a penguin on ice if we try to walk while cheering, because Cheer animation doesn't have legs movement.
That being said, we can easily add a short one-time animation such as Cheering, by doing
Start → IW ←⇢ Cheer
where
Cheer is being manually fired and automatically returned to the IW once finished.This will, however, result in a character sliding on a floor like a penguin on ice if we try to walk while cheering, because Cheer animation doesn't have legs movement.
Animations in Godot: late evening findings III
To solve this, there is a
I.e. by putting Locomotion and Cheer animation into OneShot
we can have a nicely slapped Cheering animation on top of smooth movement 💃
To add more one-shot animations we can basically chain
P.S. I wrote a ton about animations in private chats so decided to drop it here, 👎 if I should stop doing this since I will have a lot to post while replicating the SneakOut
To solve this, there is a
BlendTree node that provides a way to build more complex pipelines. Moving BlendSpace2D into BlendTree as Locomotion start node and connecting it to tree's output will result in same behavior space had; then we can use a OneShot node which takes two sources (in and shot), optional skeleton filters (e.g. arms only) and, when fired, overwrites filtered skeleton parts of in with shot.I.e. by putting Locomotion and Cheer animation into OneShot
Locomotion → Cheer_OS → output
^
Cheer_A
we can have a nicely slapped Cheering animation on top of smooth movement 💃
To add more one-shot animations we can basically chain
OneShot nodes since they return untouched in animation when not fired, i.e. only fired node of chain will be playedP.S. I wrote a ton about animations in private chats so decided to drop it here, 👎 if I should stop doing this since I will have a lot to post while replicating the SneakOut
👍2