Merge pull request #299 from catap/ssh-title

Use ssh hostname in window title, instead just ssh
This commit is contained in:
David 2025-04-03 09:59:06 -04:00 committed by GitHub
commit 907713621d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,4 +30,6 @@
:test #'equal))
"Open ssh connection to: ")))
(when entry
(stumpwm:run-shell-command (format nil "~A -e ssh ~A" *swm-ssh-default-term* (car entry))))))
(let ((host (car entry)))
(stumpwm:run-shell-command
(format nil "~A -T ~A -e ssh ~A" *swm-ssh-default-term* host host))))))