blob: e76974a06ad0bc546f995ee578042dc5e97e728a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
#!/bin/bash
#
# Terminal emulator wrapper
#
source ~/.geometry || exit 1
if [ -z "$TITLE" ]; then
if [ ! -z "$1" ]; then
TITLE="$1"
else
TITLE="terminal"
fi
fi
if [ "$TERM" == "rxvt" ]; then
if [ ! -z "$1" ]; then
rxvt-unicode -bg black +sb -fg white -fn $FONT -g $GEOMETRY -title $TITLE \
-e bash -rcfile $HOME/.terminal -c "$*"
else
rxvt-unicode -bg black +sb -fg white -fn $FONT -g $GEOMETRY -title $TITLE \
-e bash -rcfile $HOME/.terminal
fi
elif [ "$TERM" == "Eterm" ]; then
if [ ! -z "$1" ]; then
Eterm --background-pixmap 0 --scrollbar 0 +sb -b black -f white -F $FONT --borderless no \
--buttonbar 0 -g $GEOMETRY -n$TITLE -e bash -rcfile $HOME/.terminal -c "$*"
else
Eterm --background-pixmap 0 --scrollbar 0 +sb -b black -f white -F $FONT --borderless no \
--buttonbar 0 -g $GEOMETRY -n$TITLE -e bash -rcfile $HOME/.terminal
fi
elif [ "$TERM" == "xterm" ]; then
if [ ! -z "$1" ]; then
xterm -u8 -fn $FONT -geometry $GEOMETRY -title $TITLE -e bash -c "$*"
else
xterm -u8 -fn $FONT -geometry $GEOMETRY -title $TITLE -e bash
fi
fi
|