summaryrefslogtreecommitdiffhomepage
path: root/themes/light-ec
blob: 0c55b32a5798d0b5f7f46f398dec61df5cd3b2aa (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
#!/bin/bash

frg="black"
bkg="#EFEBE7"
bkg="white"

bw=${EC_TERM_BORDER:-1}
tr=${EC_TRANS_SPEC}
usr=${EC_USR_OPTS}

font=$EC_TERM_FACE
ifont=$EC_TERM_ITALIC_FACE

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 $usr -b $bw -fg "$frg" -bg "$bkg" -e emacsclient -t $*

exec urxvtcd $tr -cr tomato +ptab -bg "$bkg" -bd "$bkg" -fg "$frg" \
             -sl 0 +rv +ssr -b $bw +sbg -fn "${font}" -fi "${ifont}" \
             -xrm "*colorBD: grey20" \
             -xrm "*colorUL: grey20" \
             -xrm "*color0: ${frg}" \
             -xrm "*color8: grey20" \
             -xrm "*color1: sienna3" \
             -xrm "*color9: orangered4" \
             -xrm "*color2: #597B59" \
             -xrm "*color10: #254242" \
             -xrm "*color3: #D38108" \
             -xrm "*color11: #59513A" \
             -xrm "*color4: #3B3152" \
             -xrm "*color12: lemonchiffon4" \
             -xrm "*color5: #E0DACC" \
             -xrm "*color13: #386858" \
             -xrm "*color6: lightyellow3" \
             -xrm "*color14: #1F3D4F" \
             -xrm "*color7: ${bkg}" \
             -xrm "*color15: #EFEBE7" \
             -name "emacsclient" ${usr} \
             -e emacsclient -t $*