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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
###########
# TIK PRE Config File
#
# Example ~/.tik/tikpre
#
# This file is sourced before any windows are created.
# Basically it is useful for setting window options
# and colors. Most other things can go in ~/.tik/tikrc
###########
# You can set the language you want to use here.
#set ::TIK(options,language) English
# Send any good examples of color schemes to tictoc-list@aol.net
# and we will add your examples to this file! (Also let us know
# if you want your email address listed as a contributor.)
########## Tic Toc <tictoc-list@aol.net>
## To set ALL background and foreground colors use:
#option add *background #000080
#option add *foreground #ffffff
#option add *activeBackground #ffcc33
#option add *activeForeground black
## To set just the Button background and foreground colors use:
#option add *Button.activeBackground #ffcc33
#option add *Button.activeForeground black
#option add *Button.background #0066ff
#option add *Button.foreground #000000
#set ::SAGFONT [eval font create $::TIKFONTINFO -family helvetica -size -12 -weight normal ] ;# Buddy List Font
# Change the fonts used in text areas and entry areas. Make sure
# you test your italic font, since some fonts don't support italic.
#set ::NORMALFONT [eval font create $::TIKFONTINFO -weight normal ]
#set ::BOLDFONT [eval font create $::TIKFONTINFO -weight bold]
#set ::ITALICFONT [eval font create $::TIKFONTINFO -weight normal -slant italic]
#option add *font $::BOLDFONT
########## Yann Dubois <ydubois@sgi4.mcs.sdsmt.edu>
#option add *background lightblue
#option add *foreground black
#option add *activeBackground #000000
#option add *activeForeground white
#option add *Button.activeBackground darkblue
#option add *Button.activeForeground white
#option add *Button.background white
#option add *Button.foreground #000000
########## "A Page in the Life of ..." <dkap@haven.org>
# To set the fonts to a smaller size then the default I use::
#set ::NORMALFONT [eval font create $::TIKFONTINFO -weight normal -size 10]
#set ::BOLDFONT [eval font create $::TIKFONTINFO -weight bold -size 10]
#set ::ITALICFONT [eval font create $::TIKFONTINFO -weight normal -slant italic -size 10]
#set ::SAGFONT [eval font create $::TIKFONTINFO -weight normal -size 10]
# To set ALL background and foreground colors to white and dark grey I use:
#option add *background white
#option add *foreground #333333
# To make sure the buttons as well are sized correctly I use:
#option add *font $::BOLDFONT
########## jvp
#option add *background #aeb2c3
#option add *activeBackground #aeb2c3
#option add *text*Background white
#option add *list*Background white
#option add *listS*Background #aeb2c3
#option add *msg*Background white
#option add *textS*Background #aeb2c3
#option add *textS*activeBackground #aeb2c3
#option add *to*Background white
#option add *sb*Background #aeb2c3
#option add *Button.activeBackground #aeb2c3
#option add *Button.background #aeb2c3
#option add *Button.font fixed
###########
# Minimalist - kjr
# If you want to make the buddy list less cluttered. Also need
# to change the tikstrs and tikrc file. See example.*
###########
#set ::TIK(options,padframe) 0 ;# Don't pad buddy window.
#set ::TIK(options,sagborderwidth) 0 ;# Remove border from sag windows.
|