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