16 lines
524 B
Plaintext
16 lines
524 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
# Terminal on my computer: xfce4-terminal in /workspace. Plain bash keeps the
|
||
|
|
# image small; --disable-server so each window is its own process.
|
||
|
|
export LANG="${LANG:-zh_TW.UTF-8}"
|
||
|
|
export LC_ALL="${LC_ALL:-zh_TW.UTF-8}"
|
||
|
|
export LANGUAGE="${LANGUAGE:-zh_TW:zh:en}"
|
||
|
|
export TERM="${TERM:-xterm-256color}"
|
||
|
|
export COLORTERM="${COLORTERM:-truecolor}"
|
||
|
|
cd /workspace 2>/dev/null || cd /
|
||
|
|
exec xfce4-terminal \
|
||
|
|
--disable-server \
|
||
|
|
--geometry=100x28+40+40 \
|
||
|
|
--title=終端機 \
|
||
|
|
--working-directory=/workspace \
|
||
|
|
"$@"
|