diff options
author | Erich Eckner <git@eckner.net> | 2019-06-16 08:30:02 +0200 |
---|---|---|
committer | Erich Eckner <git@eckner.net> | 2019-06-16 08:30:02 +0200 |
commit | e484b8d99db2587cd7768a96f3ad0d786551e3ea (patch) | |
tree | a0719542dbfeb131d10369b55181e98167f9fab7 | |
parent | bafe8f4d033c1fc55b62014dcf524fea64810934 (diff) | |
download | update-all-e484b8d99db2587cd7768a96f3ad0d786551e3ea.tar.xz |
update-all: simplify screen title
-rw-r--r-- | update-all.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/update-all.in b/update-all.in index 73a3ab1..9136058 100644 --- a/update-all.in +++ b/update-all.in @@ -15,7 +15,7 @@ do fi cmd="${cmd} update-me" if [ -z "${DISPLAY}" ]; then - screen -S "update-all.${system// /.}" -d -m ${cmd} + screen -S update-all -d -m ${cmd} else urxvt -title "${system}: update-me" -e ${cmd} & fi |