blob: 75d9a628e883fb51f4f5ea8fd625d6cfa83e4c62 (
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
39
40
41
42
43
|
#!/bin/bash
font=${EC_TERM_FACE:-xft:Inconsolata-11}
ifont=${EC_TERM_ITALIC_FACE}
frg="grey80"
bkg="black"
bw=${EC_TERM_BORDER:-2}
tr=${EC_TRANS_SPEC}
usr=${EC_USR_OPTS}
exec urxvtcd $tr -cr tomato +ptab -bg "$bkg" -bd "$bkg" -fg "$frg" \
-sl 0 +rv +ssr -b $bw +sbg -fn "${font}" -fi "${ifont}" \
-name "emacsclient" ${usr} \
# -e emacsclient -t $*
# exec xterm -cr tomato -b $bw -fa $font -fi $EC_TERM_ITALIC_FACE \
# -fg $frg -bg $bkg
# -e emacsclient -t $*
exec urxvtcd -cr tomato -sl 0 +ptab +rv +ssr -b $bw -bd "$bkg" \
-bg "$bkg" -fg "$frg" \
+sbg $tr -fn "${font}" -name "emacsclient" \
-xrm "*colorBD: ${frg}" \
-xrm "*colorUL: ${frg}" \
-xrm "*color0: ${bkg}" \
-xrm "*color8: grey20" \
-xrm "*color1: lightgoldenrod4" \
-xrm "*color9: sienna3" \
-xrm "*color2: darkseagreen4" \
-xrm "*color10: #44836e" \
-xrm "*color3: grey40" \
-xrm "*color11: #648f81" \
-xrm "*color4: lightcyan4" \
-xrm "*color12: darkseagreen4" \
-xrm "*color5: paleturquoise4" \
-xrm "*color13: aquamarine4" \
-xrm "*color6: grey7" \
-xrm "*color14: grey40" \
-xrm "*color7: ${frg}" \
-xrm "*color15: grey50" \
${usr} \
-e emacsclient -t $*
|