removed test proc info, put fix in wezterm, just need to link them together now

This commit is contained in:
Mikayla Maki 2022-09-02 23:15:12 -07:00
parent 90bae80bb2
commit a100956fbf
9 changed files with 5 additions and 953 deletions

View file

@ -246,12 +246,13 @@ impl Item for TerminalContainer {
.as_ref()
.map(|fpi| {
format!(
"{} - {}",
"{} - {} {}",
fpi.cwd
.file_name()
.map(|name| name.to_string_lossy().to_string())
.unwrap_or_default(),
fpi.name,
(&fpi.argv[1..]).join(" ")
)
})
.unwrap_or_else(|| "Terminal".to_string()),