mirror of
https://github.com/wez/wezterm.git
synced 2024-11-23 23:21:08 +03:00
6b414bebc9
* Allow injecting some initial output to new panes * Have the update checker set this new-pane-banner to a short upsell to let the user know there is an update. * Refactor toast notifications into their own crate * Have the update checker call a new stub function that triggers a toast notification with an URL... but it does nothing because the rust ecosystem doesn't support this on macos yet and I'm writing this code there
17 lines
390 B
TOML
17 lines
390 B
TOML
[package]
|
|
name = "wezterm-toast-notification"
|
|
version = "0.1.0"
|
|
authors = ["Wez Furlong <wez@wezfurlong.org>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
# show a notification
|
|
notify-rust = "4"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winrt-notification = "0.2"
|