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