iPod Music conversion tools (macOS Only)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

force open with Music.app specifically

+4 -1
+4 -1
src/main.rs
··· 67 67 68 68 for file in files { 69 69 if file.file_type().is_file() { 70 - Command::new("open").arg(file.path()).output()?; 70 + Command::new("open") 71 + .args(["-a", "Music"]) 72 + .arg(file.path()) 73 + .output()?; 71 74 } 72 75 } 73 76 println!("Job done.");