docs(wm): update splash for students

This commit is contained in:
LGUG2Z
2025-11-25 08:59:28 -08:00
parent 5c2767d589
commit 71402fe01b
2 changed files with 7 additions and 3 deletions

View File

@@ -52,7 +52,9 @@ pub fn listen_for_events(wm: Arc<Mutex<WindowManager>>) {
if mdm && splash::should().map(|f| f.into()).unwrap_or(true) {
let mut args = vec!["splash".to_string()];
if let Some(server) = server {
args.push(server);
if !server.trim().is_empty() {
args.push(server);
}
}
let _ = Command::new("komorebic").args(&args).spawn();

View File

@@ -1619,7 +1619,8 @@ fn main() -> eyre::Result<()> {
The Komorebi License does not permit any kind of commercial use\n\n\
A dedicated Individual Commercial Use License is available if you wish to use this software at work\n\n\
You are strongly encouraged to make your employer pay for your license, either directly or via reimbursement\n\n\
To remove this popup in the future, run \"komorebic license <email>\" using the email address associated with your license".to_string()
To remove this popup in the future, run \"komorebic license <email>\" using the email address associated with your license\n\n\
If you are a student using komorebi on a laptop provided by your school, you can email me from your educational email account to remove this popup".to_string()
}
Some(server) => {
format!(
@@ -1627,7 +1628,8 @@ fn main() -> eyre::Result<()> {
The Komorebi License does not permit any kind of commercial use\n\n\
A dedicated Individual Commercial Use License is available if you wish to use this software at work\n\n\
You are strongly encouraged to make your employer pay for your license, either directly or via reimbursement\n\n\
To remove this popup in the future you can run \"komorebic license <email>\" using the email address associated with your license"
To remove this popup in the future you can run \"komorebic license <email>\" using the email address associated with your license\n\n
If you are a student using komorebi on a laptop provided by your school, you can email me from your educational email account to remove this popup"
)
}
};