mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-18 13:55:23 -05:00
parent
851e77383e
commit
84a8837b22
1 changed files with 5 additions and 1 deletions
|
@ -272,7 +272,11 @@ impl Window {
|
|||
)]
|
||||
fn platform_builder_ext(window_builder: WindowBuilder, wm_class: &str) -> WindowBuilder {
|
||||
use glutin::os::unix::WindowBuilderExt;
|
||||
window_builder.with_class(wm_class.to_owned(), "Alacritty".to_owned())
|
||||
window_builder
|
||||
// X11
|
||||
.with_class(wm_class.to_owned(), "Alacritty".to_owned())
|
||||
// Wayland
|
||||
.with_app_id("Alacritty".to_owned())
|
||||
}
|
||||
|
||||
#[cfg(
|
||||
|
|
Loading…
Reference in a new issue