5 lines
No EOL
111 B
Bash
5 lines
No EOL
111 B
Bash
#!/bin/bash
|
|
xtitle_cmd="$(which screen)"
|
|
if [ -n "${xtitle_cmd}" ]; then
|
|
xtitle "${USER}@$(hostname -s)"
|
|
fi |