add window name on linux
[?]
Sep 17, 2025, 4:13 PM
IN2JREDBRA56UC3H2PGS2DSLCAHGIHLE47JZF33AEID4EIZICDSACDependencies
- [2]
A5YBC77Vrecord! - [3]
AMPZ2BXKshow changed files diffs (only Edit atm) - [4]
CALXOZXAflatten crates dir - [5]
23SFYK4Qbig view refactor into a new crate - [6]
WGID4LS4absolutely slayed testing with iced task - [7]
VCNKFNUFapp init test - [8]
I2AG42PAnew cols layout - [9]
K5YUSV2Wauto-scroll to last offset - [10]
KWTBNTO3diffs selection and scrolling - [11]
IQDCHWCPload a pijul repo - [12]
SASAN2XCuse nav-scrollable - [13]
3SYSJKYLadd app icon - [14]
6YZAVBWUInitial commit
Change contents
- file addition: window.rs[4.364]
//! OS window handlingpub const NAME: &str = "Inflorescence";#[doc(inline)]pub use iced::window::{events, Event, Id, Settings};#[cfg(target_os = "linux")]pub fn settings() -> Settings {Settings {platform_specific: iced::window::settings::PlatformSpecific {application_id: NAME.to_string(),override_redirect: false,},..Default::default()}}#[cfg(not(target_os = "linux"))]pub fn settings() -> Settings {Settings::default()} - edit in inflorescence/src/main.rs at line 7
mod window; - replacement in inflorescence/src/main.rs at line 19
use iced::{window, Element, Subscription};use iced::{Element, Subscription}; - replacement in inflorescence/src/main.rs at line 89
let window_settings = window::Settings::default();let window_settings = window::settings();