diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index ea74b32..4be9836 100644 --- a/src/main.rs +++ b/src/main.rs @@ -71,7 +71,7 @@ impl WindowHider { fn show(&self, conn: &mut Connection, pid: i32) -> Result<(), Error> { conn.run_command(format!("[con_mark={pid}] move workspace current"))?; - conn.run_command(format!("[con_mark={pid}] floating toggle"))?; + conn.run_command(format!("[con_mark={pid}] floating toggle, unmark {pid}"))?; Ok(()) } } |