diff options
author | John Ankarström <john@ankarstrom.se> | 2021-07-12 13:13:31 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-07-12 13:13:31 +0200 |
commit | 45cddd072119c5abd7ec076cf28d51ee01f125b7 (patch) | |
tree | 47772d1b542837c5b20a569e3da77f8c998ca96b | |
parent | 70502f5fdb74487705b0084e8821ea46f4ec6d9a (diff) | |
download | xutil-45cddd072119c5abd7ec076cf28d51ee01f125b7.tar.gz |
xtopen: Speed up xterm start
-rwxr-xr-x | xtopen | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -37,4 +37,5 @@ if ! which "$1" >/dev/null; then exit 1 fi -exec xterm -title "$* (`abbr "$PWD"`)" $o -e $p "$@" +export LC_ALL=en_US.ISO8859-1 # speed up xterm start +exec xterm -title "$* (`abbr "$PWD"`)" $o -e u $p "$@" |