mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
Some users may choose to disable notification timeout for normal-level notifications to ensure no notifications are missed when the user is away from the screen. However, there are several Omarchy notifications that only serve as an immediate feedback for a user action, such as "Screensaver enabled" or "Editing config file foo.conf", for which disabling the timeout is not desirable. This commit drops the urgency level for such notification to low, allowing configuring a different timeout value for them. Notifications with an explicitly set timeout are excluded from this commit.
8 lines
261 B
Bash
8 lines
261 B
Bash
#!/bin/bash
|
|
|
|
# This hook is called with the snake-cased name of the font that has just been set.
|
|
# To put it into use, remove .sample from the name.
|
|
|
|
# Example: Show the name of the theme that was just set.
|
|
# notify-send -u low "New font" "Your new font is $1"
|