00:40 Delf
01:35 the-golem #litestep
04:50 the-golem
05:33 the-golem #litestep
05:56 Acidfire #litestep
06:28 tails_
07:00 alurcard2
07:08 blkaway blkhawk
09:19 Delf #litestep
  Delf
  Delf #litestep
11:02 Ashira #litestep
11:06 arthoz #litestep
11:06 Acidfire
11:38 the-golem
11:38 Acidfire #litestep
11:44 Tobbe Tobbe|autoaway
12:09 Acidfire
12:44 THC4k #litestep
13:40 LouCypher
  LouCypher #litestep
14:08 THC4k
15:32 Anomareh why can't I do a labelrefresh and then labelshow on a label with a customalpha fade? :[
16:01 the-golem #litestep
16:29 Ashira
16:41 THC4k #litestep
17:02 Acidfire #litestep
18:39 AcquaCow
18:42 AcquaCow #litestep
18:48 AcquaCow
18:55 AcquaCow #litestep
19:10 alurcard2 #litestep
19:29 the-golem
20:07 Anomareh
20:11 Anomareh #litestep
20:29 DigitalSoul #litestep
20:30 DigitalSoul I'm using a tray image and the image is pure white but parts are black
    but I want the whole thing white
    any help?
20:33 Greywool Define "parts"
20:33 DigitalSoul how so
    how can I
20:33 Greywool As in, top left corner?
    The task entries?
    Borders?
20:33 DigitalSoul the tray
20:34 Greywool Random spots here and there?
20:34 DigitalSoul um..
    one line
    0= White |=Black
    00||||00000
20:35 DigitalSoul did I explain good?
    SS?
20:35 Greywool So about a quarter of it is black, somewhere left of the centre
20:36 DigitalSoul yea
    when I use a black image it is perfect but white gives me trouble
20:38 Greywool Sounds somewhat odd
    Not seeing the configs, all I could do is guess and I don't have any ideas of what to guess what
20:38 DigitalSoul yea I like the white better because it covers up the white pixels of the tray icons
20:39 DigitalSoul http://paste2.org/p/974630
20:41 Greywool And taskbarBackground.png is a completely white png?
20:41 DigitalSoul should be
20:42 Greywool Dimensions?
20:42 DigitalSoul yea it is
    30 by 32
    but I made it better in the theme.rc
20:43 Greywool Htm
    Hrm, even
20:44 Greywool If you want it just a single colour, why use a background image at all?
20:44 DigitalSoul I don't know I was using the code that was in the rc
    .rc
20:46 DigitalSoul it might have a gradient I don't know
    for it being so bright
20:49 DigitalSoul Well thanks for trying lol
20:55 DigitalSoul
21:20 Anomareh
22:18 Anomareh #litestep
22:22 Anomareh
  Anomareh #litestep
01:01 jugg #litestep
01:07 DigitalSoul_ #litestep
01:07 DigitalSoul_ I'm trying to make a popuptheme that I can change the font for the popup and taskbar
01:08 DigitalSoul_ code http://paste2.org/p/974854
01:15 the-golem #litestep
01:18 Anomareh and?
01:19 DigitalSoul_ what?
01:19 Anomareh what was your question
    you just stated facts
01:20 DigitalSoul_ that ^
    to make a popup
    http://paste2.org/p/974862
01:21 DigitalSoul_ question on the bottom
01:21 Anomareh ah didn't see that
    what do you mean they are listed?
01:22 DigitalSoul_ on the themeVars.rc
    the fonts are #ed
01:23 Anomareh the way I'd go about it is just have a var popupFont
01:23 DigitalSoul_ var?
01:23 Anomareh then in your theme popup do a !VarSet !VarSave !SetEvar !PopupRescan
    in themevars, like taskbarMode
    but instead popupFont
01:24 DigitalSoul_ I'm confused
    sorry
01:24 Anomareh for your popup config
01:24 DigitalSoul_ *Popup "Arial Caps" !execute [!xTextReplace @$ConfigDir$themevars.rc@ @font *@ @font "Arial Caps"@] [!xTextReplace @$configDir$themevars.rc.@ @fontpopupsize *@ @fontpopupsize 12@] [!xTextReplace @$configDir$themevars.rc.@ @ClearType *@ @ClearType "False"] [!recycle]
    that is what on theme uses that I'm basing it off of
    *one theme
01:25 Anomareh I'd use mzscript instead of xtextreplace
    it allows you to set and save vars just the same just with !VarSet MyVar MyValue
01:25 DigitalSoul_ how would that go?
    like type it
01:25 Anomareh then you call !VarSave MyVar and it gets saved to the .rc file
01:26 DigitalSoul_ and demo it for me with Arial font
01:26 Anomareh in your themevars.rc have
    myPopupFont "Arial Caps"
    then in your theme.rc
    xPopupFont $myPopupFont$
    then for your theme popup
01:27 Anomareh the replace for that last line you posted
    !Execute [!VarSet myPopupFont "Arial Bold"][!VarSave myPopupFont][!SetEvar myPopupFont "Arial Bold"][!PopupRescan]
01:28 Anomareh to be able to use !VarSet and !VarSave you need mzscript, and for setevar you need xlabel
    does that make sense?
01:29 DigitalSoul_ kinda
01:29 Anomareh what doesn't?
01:29 DigitalSoul_ but when I save it
    gives me error that $popupfont$ is not defined
01:30 Anomareh in your themevars file, the one you pasted, you need to have that var defined there
    each line like taskbarMode, colourScheme, those are vars
    for example taskbarMode is a var and it's value is 1
    colourScheme is another var and it's value is 2
01:31 DigitalSoul_ I put myPopupFont "Arial Caps"
    but what do i put to define it?
01:31 Anomareh if that's what you put in your themevar file it is defined
    you gave it the value "Arial Caps"
01:32 Anomareh to access it in your theme you encase the variable name in dollar signs
    so $myPopupFont$
    so
    xPopupFont $myPopupFont$
    is equivalent to
    xPopupFont "Arial Caps"
01:32 DigitalSoul_ but it is still not defined
01:33 Anomareh you said it's saying $popupfont$ is not defined
01:33 DigitalSoul_ yea
    i put what u said
01:33 Anomareh if it's myPopupFont you need to use $myPopupFont$
    not $popupfont$
01:33 DigitalSoul_ xPopupFont $myPopupFont$
01:34 DigitalSoul_ in what file?
01:34 Anomareh the file you pasted
    for instance make line 18
    myPopupFont "Arial Caps"
    or whatever font you would like
01:35 Anomareh then where ever in your them this line exists:
    xPopupFont ...
    change it to
    xPopupFont $myPopupFont$
01:36 DigitalSoul_ theme.rc has that
01:36 Anomareh k change it to what I posted
01:36 DigitalSoul_ it was like that
01:37 Anomareh paste your themevars file and your theme.rc file
01:37 DigitalSoul_ I have theme.rc, popuptheme.rc and themevars.rc
    open
01:37 Anomareh paste all 3 of them
01:38 DigitalSoul_ http://paste2.org/p/974878
    http://paste2.org/p/974881
01:39 DigitalSoul_ http://paste2.org/p/974884
01:40 Anomareh hat looks fine the only thing is you need the module mzscript for the varset and varsave bangs
01:41 Anomareh http://paste2.org/p/974887
    change your theme.rc file to that
    then hit ctrl+alt+r
    it'll prompt you to download the module, download it