Noti is a modern, lightweight notification manager designed for the Wayland display server protocol. It aims to provide a seamless and efficient notification experience for Wayland users.
- Wayland Support: Fully compatible with Wayland, ensuring smooth operation on modern Linux desktops.
- Lightweight: Minimal resource usage for efficient performance.
- Customizable: Easily configurable to fit your notification style preferences
- Custom Configurations: Supports per-application custom configurations with a mergeable settings system.
Install binary via cargo install
:
cargo install --git https://github.com/noti-rs/noti/
After installation, you can start Noti with:
noti run
To enable Noti to start automatically with your Wayland session, add it to your session startup script.
Noti can be configured via a configuration file located at $XDG_CONFIG_HOME/noti/config.toml
or ~/.config/noti/config.toml
. Below is an example configuration:
[general]
font = [ "JetBrainsMono Nerd Font", 16 ]
anchor = "top-right"
offset = [15, 15]
gap = 10
sorting = "urgency"
width = 300
height = 150
[display]
padding = 8
timeout = 2000
[display.colors.normal]
background = "#1e1e2e"
foreground = "#99AEB3"
[display.colors.critical]
background = "#EBA0AC"
foreground = "#1E1E2E"
[display.border]
size = 4
radius = 10
color = "#000"
# also applicable
# color = "#FF000050"
# which the last two digits defines opacity aka alpha-channel
[display.image]
max_size = 64
margin = { right = 25 }
# For old computers you can use simplier method of resize
# resizing_method = "nearest"
[display.text]
wrap = false
ellipsize_at = "middle"
[display.title]
style = "bold italic"
margin = { top = 5 }
[display.body]
justification = "left"
margin = { top = 12 }
[[app]]
name = "Telegram Desktop"
[app.display]
border = { radius = 8 }
markup = true
[app.display.body]
justification = "center"
line_spacing = 5
Contributions are welcome! Please fork the repository and submit a pull request for any changes. For major changes, please open an issue first to discuss what you would like to change
- Fork the repository
- Create your feature branch:
git checkout -b your-feature
- Commit your changes:
git commit -am 'Add some feature'
- Push to the branch:
git push origin your-feature
- Create a new Pull Request
For any inquiries or support, please open an issue on GitHub.