Page 2200 of 2348 FirstFirst ... 1200170021002150219021982199220022012202221022502300 ... LastLast
Results 21,991 to 22,000 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #21991
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Petro Dawg View Post
    @Sector11

    You are indeed a Conky Guru. I put a ${font} at the end of my calendar Conky and my shades work perfectly.
    Guru! No, just something I discovered after playing with Teo's Weather script because he uses outline and sades in his default conkys.

    DROVE ME MAD for a while

    Could you post your "original" bar ( ||||||||||||||||| ) conky and the updated version with the "cleaner ||||||| code", complete with the Heydings font. I'll install that font and run both of them on my desktop #4, it's empty at the moment and screaming at me for some conky attention

    My test conky wouldn't really be that good a test - doesn't have your fonts etc etc.

  2. #21992
    Join Date
    Jul 2012
    Location
    Oklahoma, USA
    Beans
    Hidden!
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Sector11 View Post
    Guru! No, just something I discovered after playing with Teo's Weather script because he uses outline and sades in his default conkys.

    DROVE ME MAD for a while

    Could you post your "original" bar ( ||||||||||||||||| ) conky and the updated version with the "cleaner ||||||| code", complete with the Heydings font. I'll install that font and run both of them on my desktop #4, it's empty at the moment and screaming at me for some conky attention

    My test conky wouldn't really be that good a test - doesn't have your fonts etc etc.
    Assuming I did everything correctly, all my files should be attached in the zip file below.
    Attached Files Attached Files
    Who's Awesome? You're Awesome.

  3. #21993
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Petro Dawg View Post
    Assuming I did everything correctly, all my files should be attached in the zip file below.
    OK, thanks, meantime I was busy copying code, adding CPU's and running these with an update interval of 1 second.
    Heydings Icons are working fine here. Copy/past these: ↑ ↓ ← → see if they work, you'll need a font that accept them though.

    OH OH ........ the one with the FF ICON "just" blinked out. I have Wall·E, and restarted to show you!


    Still testing....
    Last edited by Sector11; May 27th, 2013 at 01:05 AM.

  4. #21994
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    @ Petro Dawg

    Centre and right conkys crapped out, one on the left still going. Other than alignment - everything above TEXT is identical.

    Added RAM (your old style) to left conky to test.

  5. #21995
    Join Date
    Jul 2012
    Location
    Oklahoma, USA
    Beans
    Hidden!
    Distro
    Ubuntu 18.04 Bionic Beaver

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Sector11 View Post
    @ Petro Dawg

    Centre and right conkys crapped out, one on the left still going. Other than alignment - everything above TEXT is identical.

    Added RAM (your old style) to left conky to test.
    Cool, that means nobody can run my config without altering the conky source code. My conky will be unique.

    Is it returning the "you don't need that many fonts" error or is it crashing for another reason on your system?
    Who's Awesome? You're Awesome.

  6. #21996
    Join Date
    Oct 2012
    Beans
    148

    Re: Post your .conkyrc files w/ screenshots

    I have a question. I decided today that I think I like conky to have a decorated window with close and minimize button on it, so I can get it out of the way if I want. The only problem with this is that there is no real icon for it as it shows up in the dock (see below - the conky icon looks like a terminal with a red circle and line through it, at the bottom). Does anyone know how I can set an icon which will appear for conky? I expect this might be somewhat DE-specific, but if anyone can point me in the right direction, I'd be grateful. Maybe if I put an entry for it in /usr/share/applications?

  7. #21997
    Join Date
    Jan 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    That icon means that there is no icon that was set to display.
    Can you check on it what icon it wants? (have and had no Unity so don't know if it's possible)
    Linux Debian Sid (Minted) x86_64/3.12.10, Conky 2.0_pre, Xorg 7.7/1.15.0, KDE 4.11.5, Lenovo T61, Intel X3100, HITACHI HTS722010K9SA00 100GB, WDC_WD5000BEVT 500GB
    Linux user No.: 483055 | My Conky Pitstop corner | One4All project

  8. #21998
    Join Date
    Oct 2008
    Beans
    3,509

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by montag dp View Post
    I have a question. I decided today that I think I like conky to have a decorated window with close and minimize button on it, so I can get it out of the way if I want. The only problem with this is that there is no real icon for it as it shows up in the dock (see below - the conky icon looks like a terminal with a red circle and line through it, at the bottom). Does anyone know how I can set an icon which will appear for conky? I expect this might be somewhat DE-specific, but if anyone can point me in the right direction, I'd be grateful. Maybe if I put an entry for it in /usr/share/applications?
    Just place a .desktop file for conky in ~/.local/share/applications
    eg
    save as conky.desktop
    Code:
    #!/usr/bin/env xdg-open
    
    [Desktop Entry]
    Version=1.0
    Type=Application
    Terminal=false
    Exec=conky
    Name=conky
    Icon=/home/glen/Pictures/letter-c.png
    Comment=conky
    Link to an image of your choice
    I just searched for "letter-c.png" using google image search.

    You could also change the Exec= line to point to a script to toggle conky on/off.
    That way you won't need to show decorations.

    toggleconky.sh
    Code:
    #!/bin/bash
    
    # click to start, click to stop
    
    if pidof conky | grep [0-9] > /dev/null
    then
    	killall conky 
    else
    	conky
    fi
    Attached Images Attached Images
    Last edited by stinkeye; May 27th, 2013 at 02:20 PM.

  9. #21999
    Join Date
    Oct 2012
    Beans
    148

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by stinkeye View Post
    Just place a .desktop file for conky in ~/.local/share/applications
    eg
    save as conky.desktop
    Code:
    #!/usr/bin/env xdg-open
    
    [Desktop Entry]
    Version=1.0
    Type=Application
    Terminal=false
    Exec=conky
    Name=conky
    Icon=/home/glen/Pictures/letter-c.png
    Comment=conky
    Link to an image of your choice
    I just searched for "letter-c.png" using google image search.

    You could also change the Exec= line to point to a script to toggle conky on/off.
    That way you won't need to show decorations.

    toggleconky.sh
    Code:
    #!/bin/bash
    
    # click to start, click to stop
    
    if pidof conky | grep [0-9] > /dev/null
    then
        killall conky 
    else
        conky
    fi
    Cool, that's what I thought. I compiled conky from source (because I wanted to add an item which wasn't available by default) and didn't bother to create a .desktop file initially, but I think I will do that now.

    Thanks for the toggle on/off script, too. I might end up using that instead of the window decorations.
    Last edited by montag dp; May 27th, 2013 at 03:27 PM.

  10. #22000
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Petro Dawg View Post
    Cool, that means nobody can run my config without altering the conky source code. My conky will be unique.

    Is it returning the "you don't need that many fonts" error or is it crashing for another reason on your system?
    Well good and bad news.... I popped in yours from the "bundle" you sent, changed a couple of things to work here.

    For example above test it's basically what you have with minor tweaks:

    Code:
    #conky performance settings
      update_interval 86400  ### calendar only all others = 1.0
      total_run_times 0
      cpu_avg_samples 4
      no_buffers yes
      double_buffer yes
      override_utf8_locale yes
    #  max_specials 2000	########## none of the ##############
    #  text_buffer_size 2048	########## conkys have ##############
    #  max_user_text 65000	########## these active #############
    
    #overall position of conky window
      alignment bl  ########### OBVIOUS CHANGES  HERE #########
      gap_x 20  ########### OBVIOUS CHANGES  HERE #########
      gap_y 5  ########### OBVIOUS CHANGES  HERE #########
      minimum_size 100 140
      maximum_width 140
    
    #overall appearance of conky window
      own_window yes
      own_window_type normal #override #### changed to normal to drop "sticky" from hints.
      own_window_transparent yes
      own_window_hints undecorated,below,skip_taskbar,skip_pager  ##### not required if you use "override"
      draw_borders no
      #own_window_argb_visual yes
      #own_window_argb_value 100
    
    #default text appearance
      use_xft yes
      xftalpha 1
      xftfont Alfios:size=10
      default_color FFEEDD #aliceblue #beige #bisque #white
      draw_shades yes
      draw_outline no
      default_shade_color black
      default_outline_color black
      uppercase no
    
    #border around graphs
      draw_graph_borders no
    
    #colors  ################# as per given conkys ##########
      color1 CCFFFF #FFFF00
      color2 CCDDFF #FFDD00
      color3 CCBBFF #FFBB00
      color4 CC99FF #FF9900
      color5 CC77FF #FF7700
      color6 CC55FF #FF5500
      color7 CC33FF #FF3300
      color8 CC11FF #FF1100
      color9 444444
      color0 FF8888 #33BBBB #lightskyblue
    
    TEXT
    Started them all in a terminal all in a terminal and stripped out the wlan0 stuff as it was causing errors:
    Code:
     27 May 13 | 13:09:16 ~
        $ conky -c /media/5/Conky/PetroDawg/conky_older &
    [1] 20731
    
     27 May 13 | 13:09:20 ~
        $ Conky: desktop window (264) is root window
    Conky: window type - normal
    Conky: drawing to created window (0x2e00001)
    Conky: drawing to double buffer
    sh: 1: /usr/lib/update-notifier/apt-check: not found
    Conky: failed to parse compare string '>0'
    Conky: compare failed for expression '>0'
    sh: 1: /usr/lib/update-notifier/apt-check: not found
    sh: 1: /usr/lib/update-notifier/apt-check: not found
    Conky: Bad arguments: 'unk ' and ' 0'
    Conky: compare failed for expression 'unk == 0'
    Conky: failed to parse compare string '>0'
    Conky: compare failed for expression '>0'
    Conky: Bad arguments: 'unk ' and ' 0'
    Conky: compare failed for expression 'unk == 0'
    Conky: failed to parse compare string '>0'
    Conky: compare failed for expression '>0'
    Conky: Bad arguments: 'unk ' and ' 0'
    Conky: compare failed for expression 'unk == 0'
    I started them with my ssc.sh
    Code:
    #!/bin/bash
    # click to start, click to stop
    
    if pidof conky | grep [0-9] > /dev/null
      then
    	exec killall conky
      else
    
    # on all desktops | sticky
    	conky -c /media/5/Conky/S11_Email_1.conky &
    
    # Start with low sleep on highest desktop
    # Increase sleep as desktop lowers to insure the conky is running before changing desktops.
    # on desktop 4 only | no sticky
    	(sleep 1s && wmctrl -s 3 && conky -c /media/5/Conky/PD_bars-0.conky) &
    	(sleep 1s && wmctrl -s 3 && conky -c /media/5/Conky/PD_bars-1.conky) &
    	(sleep 1s && wmctrl -s 3 && conky -c /media/5/Conky/PD_bars-2.conky) &
    	(sleep 1s && wmctrl -s 3 && conky -c /media/5/Conky/PetroDawg/calendar_current) &
    	(sleep 1s && wmctrl -s 3 && conky -c /media/5/Conky/PetroDawg/conky_older) &
    	(sleep 1s && wmctrl -s 3 && conky -c /media/5/Conky/PetroDawg/conky_old) &
    	(sleep 1s && wmctrl -s 3 && conky -c /media/5/Conky/PetroDawg/conky_current) &
    
    # on desktop 3 only | no sticky
    	(sleep 2s && wmctrl -s 2 && conky) &
    
    # on desktop 2 only | no sticky
    	(sleep 4s && wmctrl -s 1 && conky -c /media/5/Conky/S11_Disk_Activity.conky) &
    	(sleep 4s && wmctrl -s 1 && conky -c /media/5/Conky/S11_Dates.conky) &
    	(sleep 4s && wmctrl -s 1 && conky -c /media/5/Conky/S11_Rem_Cal.conky) &
    
    # on desktop 1 only | no sticky
    	(sleep 6s && wmctrl -s 0 && conky -c /media/5/Conky/S11-Top_Right.conky) &
    	(sleep 6s && wmctrl -s 0 && conky -c /media/5/Conky/S11_v9_Vert.conky) &
    	(sleep 6s && wmctrl -s 0 && conky -c /media/5/Conky/S11-VRX.conky) &
    
    fi
    exit
    I ran my ssc.sh to get this, note the time:

    First one blinks off, again note the time:

    Second one goes - time:

    Filled em all and restarted them in a terminal to show you: no errors:

    Those two just blink out ... with no errors.

    Here's the one you don't have - PD_bars-0 top left
    Code:
    # killall conky && conky -c /media/5/Conky/PD_bars-0.conky &
    #conky performance settings
      update_interval 1
      total_run_times 0
      cpu_avg_samples 4
      no_buffers yes
      double_buffer yes
      override_utf8_locale no
    #  max_specials 2000
    #  text_buffer_size 2048
    #  max_user_text 65000
    
    
    #overall position of conky window
    #  alignment middle_right
      alignment top_left
      gap_x 20
      gap_y 10
      minimum_size 150 0
    #  maximum_width 150
    
    
    #overall appearance of conky window
      own_window yes
      own_window_type normal ##override
      own_window_transparent yes
    #  own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
      own_window_hints undecorated,below,skip_taskbar,skip_pager
      draw_borders no
      #own_window_argb_visual yes
      #own_window_argb_value 100
    
    
    #default text apperance
      use_xft yes
      xftalpha 0.9
      xftfont Alfios:size=10
      default_color FFEEDD #aliceblue #beige #bisque #white
      draw_shades no
      draw_outline no
      default_shade_color black
      default_outline_color black
      uppercase no
    
    
    #border around graphs
      draw_graph_borders no
    
    #colors
      color1 FFFF00
      color2 FFDD00
      color3 FFBB00
      color4 FF9900
      color5 FF7700
      color6 FF5500
      color7 FF3300
      color8 FF1100
      color9 grey20
    
    lua_load /media/5/Conky/LUA/draw-bg.lua
    lua_draw_hook_pre draw_bg 10 0 0 0 0 0x000000 0.3
    TEXT
    CPU1${voffset -2}${alignr}[\
    ${if_match ${cpu cpu1} == 0}${color9}|||||||||||||||||||||${else}\
    ${if_match ${cpu cpu1} <= 5}${color1}|${color9}||||||||||||||||||||${else}\
    ${if_match ${cpu cpu1} <= 10}${color1}||${color9}|||||||||||||||||||${else}\
    ${if_match ${cpu cpu1} <= 15}${color1}|||${color9}||||||||||||||||||${else}\
    ${if_match ${cpu cpu1} <= 20}${color1}|||${color2}|${color9}|||||||||||||||||${else}\
    ${if_match ${cpu cpu1} <= 25}${color1}|||${color2}||${color9}||||||||||||||||${else}\
    ${if_match ${cpu cpu1} <= 30}${color1}|||${color2}|||${color9}|||||||||||||||${else}\
    ${if_match ${cpu cpu1} <= 35}${color1}|||${color2}|||${color3}|${color9}||||||||||||||${else}\
    ${if_match ${cpu cpu1} <= 40}${color1}|||${color2}|||${color3}||${color9}|||||||||||||${else}\
    ${if_match ${cpu cpu1} <= 45}${color1}|||${color2}|||${color3}|||${color9}||||||||||||${else}\
    ${if_match ${cpu cpu1} <= 50}${color1}|||${color2}|||${color3}|||${color4}|${color9}|||||||||||${else}\
    ${if_match ${cpu cpu1} <= 55}${color1}|||${color2}|||${color3}|||${color4}||${color9}||||||||||${else}\
    ${if_match ${cpu cpu1} <= 60}${color1}|||${color2}|||${color3}|||${color4}|||${color9}|||||||||${else}\
    ${if_match ${cpu cpu1} <= 65}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|${color9}||||||||${else}\
    ${if_match ${cpu cpu1} <= 70}${color1}|||${color2}|||${color3}|||${color4}|||${color5}||${color9}|||||||${else}\
    ${if_match ${cpu cpu1} <= 75}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color9}||||||${else}\
    ${if_match ${cpu cpu1} <= 80}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|${color9}|||||${else}\
    ${if_match ${cpu cpu1} <= 85}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}||${color9}||||${else}\
    ${if_match ${cpu cpu1} <= 90}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color9}|||${else}\
    ${if_match ${cpu cpu1} <= 95}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}|${color9}||${else}\
    ${if_match ${cpu cpu1}  < 100}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}||${color9}|${else}\
    ${if_match ${cpu cpu1} == 100}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}||${color8}|\
    ${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}\
    ${color}]
    CPU2${voffset -2}${alignr}[\
    ${if_match ${cpu cpu2} == 0}${color9}|||||||||||||||||||||${else}\
    ${if_match ${cpu cpu2} <= 5}${color1}|${color9}||||||||||||||||||||${else}\
    ${if_match ${cpu cpu2} <= 10}${color1}||${color9}|||||||||||||||||||${else}\
    ${if_match ${cpu cpu2} <= 15}${color1}|||${color9}||||||||||||||||||${else}\
    ${if_match ${cpu cpu2} <= 20}${color1}|||${color2}|${color9}|||||||||||||||||${else}\
    ${if_match ${cpu cpu2} <= 25}${color1}|||${color2}||${color9}||||||||||||||||${else}\
    ${if_match ${cpu cpu2} <= 30}${color1}|||${color2}|||${color9}|||||||||||||||${else}\
    ${if_match ${cpu cpu2} <= 35}${color1}|||${color2}|||${color3}|${color9}||||||||||||||${else}\
    ${if_match ${cpu cpu2} <= 40}${color1}|||${color2}|||${color3}||${color9}|||||||||||||${else}\
    ${if_match ${cpu cpu2} <= 45}${color1}|||${color2}|||${color3}|||${color9}||||||||||||${else}\
    ${if_match ${cpu cpu2} <= 50}${color1}|||${color2}|||${color3}|||${color4}|${color9}|||||||||||${else}\
    ${if_match ${cpu cpu2} <= 55}${color1}|||${color2}|||${color3}|||${color4}||${color9}||||||||||${else}\
    ${if_match ${cpu cpu2} <= 60}${color1}|||${color2}|||${color3}|||${color4}|||${color9}|||||||||${else}\
    ${if_match ${cpu cpu2} <= 65}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|${color9}||||||||${else}\
    ${if_match ${cpu cpu2} <= 70}${color1}|||${color2}|||${color3}|||${color4}|||${color5}||${color9}|||||||${else}\
    ${if_match ${cpu cpu2} <= 75}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color9}||||||${else}\
    ${if_match ${cpu cpu2} <= 80}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|${color9}|||||${else}\
    ${if_match ${cpu cpu2} <= 85}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}||${color9}||||${else}\
    ${if_match ${cpu cpu2} <= 90}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color9}|||${else}\
    ${if_match ${cpu cpu2} <= 95}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}|${color9}||${else}\
    ${if_match ${cpu cpu2}  < 100}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}||${color9}|${else}\
    ${if_match ${cpu cpu2} == 100}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}||${color8}|\
    ${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}\
    ${color}]
    CPU3${voffset -2}${alignr}[\
    ${if_match ${cpu cpu3} == 0}${color9}|||||||||||||||||||||${else}\
    ${if_match ${cpu cpu3} <= 5}${color1}|${color9}||||||||||||||||||||${else}\
    ${if_match ${cpu cpu3} <= 10}${color1}||${color9}|||||||||||||||||||${else}\
    ${if_match ${cpu cpu3} <= 15}${color1}|||${color9}||||||||||||||||||${else}\
    ${if_match ${cpu cpu3} <= 20}${color1}|||${color2}|${color9}|||||||||||||||||${else}\
    ${if_match ${cpu cpu3} <= 25}${color1}|||${color2}||${color9}||||||||||||||||${else}\
    ${if_match ${cpu cpu3} <= 30}${color1}|||${color2}|||${color9}|||||||||||||||${else}\
    ${if_match ${cpu cpu3} <= 35}${color1}|||${color2}|||${color3}|${color9}||||||||||||||${else}\
    ${if_match ${cpu cpu3} <= 40}${color1}|||${color2}|||${color3}||${color9}|||||||||||||${else}\
    ${if_match ${cpu cpu3} <= 45}${color1}|||${color2}|||${color3}|||${color9}||||||||||||${else}\
    ${if_match ${cpu cpu3} <= 50}${color1}|||${color2}|||${color3}|||${color4}|${color9}|||||||||||${else}\
    ${if_match ${cpu cpu3} <= 55}${color1}|||${color2}|||${color3}|||${color4}||${color9}||||||||||${else}\
    ${if_match ${cpu cpu3} <= 60}${color1}|||${color2}|||${color3}|||${color4}|||${color9}|||||||||${else}\
    ${if_match ${cpu cpu3} <= 65}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|${color9}||||||||${else}\
    ${if_match ${cpu cpu3} <= 70}${color1}|||${color2}|||${color3}|||${color4}|||${color5}||${color9}|||||||${else}\
    ${if_match ${cpu cpu3} <= 75}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color9}||||||${else}\
    ${if_match ${cpu cpu3} <= 80}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|${color9}|||||${else}\
    ${if_match ${cpu cpu3} <= 85}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}||${color9}||||${else}\
    ${if_match ${cpu cpu3} <= 90}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color9}|||${else}\
    ${if_match ${cpu cpu3} <= 95}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}|${color9}||${else}\
    ${if_match ${cpu cpu3}  < 100}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}||${color9}|${else}\
    ${if_match ${cpu cpu3} == 100}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}||${color8}|\
    ${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}\
    ${color}]
    ${hr}
    CPU0${voffset -2}${alignr}[\
    ${if_match ${cpu cpu0} == 0}${color9}|||||||||||||||||||||${else}\
    ${if_match ${cpu cpu0} <= 5}${color1}|${color9}||||||||||||||||||||${else}\
    ${if_match ${cpu cpu0} <= 10}${color1}||${color9}|||||||||||||||||||${else}\
    ${if_match ${cpu cpu0} <= 15}${color1}|||${color9}||||||||||||||||||${else}\
    ${if_match ${cpu cpu0} <= 20}${color1}|||${color2}|${color9}|||||||||||||||||${else}\
    ${if_match ${cpu cpu0} <= 25}${color1}|||${color2}||${color9}||||||||||||||||${else}\
    ${if_match ${cpu cpu0} <= 30}${color1}|||${color2}|||${color9}|||||||||||||||${else}\
    ${if_match ${cpu cpu0} <= 35}${color1}|||${color2}|||${color3}|${color9}||||||||||||||${else}\
    ${if_match ${cpu cpu0} <= 40}${color1}|||${color2}|||${color3}||${color9}|||||||||||||${else}\
    ${if_match ${cpu cpu0} <= 45}${color1}|||${color2}|||${color3}|||${color9}||||||||||||${else}\
    ${if_match ${cpu cpu0} <= 50}${color1}|||${color2}|||${color3}|||${color4}|${color9}|||||||||||${else}\
    ${if_match ${cpu cpu0} <= 55}${color1}|||${color2}|||${color3}|||${color4}||${color9}||||||||||${else}\
    ${if_match ${cpu cpu0} <= 60}${color1}|||${color2}|||${color3}|||${color4}|||${color9}|||||||||${else}\
    ${if_match ${cpu cpu0} <= 65}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|${color9}||||||||${else}\
    ${if_match ${cpu cpu0} <= 70}${color1}|||${color2}|||${color3}|||${color4}|||${color5}||${color9}|||||||${else}\
    ${if_match ${cpu cpu0} <= 75}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color9}||||||${else}\
    ${if_match ${cpu cpu0} <= 80}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|${color9}|||||${else}\
    ${if_match ${cpu cpu0} <= 85}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}||${color9}||||${else}\
    ${if_match ${cpu cpu0} <= 90}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color9}|||${else}\
    ${if_match ${cpu cpu0} <= 95}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}|${color9}||${else}\
    ${if_match ${cpu cpu0}  < 100}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}||${color9}|${else}\
    ${if_match ${cpu cpu0} == 100}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}||${color8}|\
    ${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}\
    ${color}]
    ${hr}
    RAM${voffset -2}${alignr}[\
    ${if_match ${memperc} == 0}${color9}|||||||||||||||||||||${else}\
    ${if_match ${memperc} <= 5}${color1}|${color9}||||||||||||||||||||${else}\
    ${if_match ${memperc} <= 10}${color1}||${color9}|||||||||||||||||||${else}\
    ${if_match ${memperc} <= 15}${color1}|||${color9}||||||||||||||||||${else}\
    ${if_match ${memperc} <= 20}${color1}|||${color2}|${color9}|||||||||||||||||${else}\
    ${if_match ${memperc} <= 25}${color1}|||${color2}||${color9}||||||||||||||||${else}\
    ${if_match ${memperc} <= 30}${color1}|||${color2}|||${color9}|||||||||||||||${else}\
    ${if_match ${memperc} <= 35}${color1}|||${color2}|||${color3}|${color9}||||||||||||||${else}\
    ${if_match ${memperc} <= 40}${color1}|||${color2}|||${color3}||${color9}|||||||||||||${else}\
    ${if_match ${memperc} <= 45}${color1}|||${color2}|||${color3}|||${color9}||||||||||||${else}\
    ${if_match ${memperc} <= 50}${color1}|||${color2}|||${color3}|||${color4}|${color9}|||||||||||${else}\
    ${if_match ${memperc} <= 55}${color1}|||${color2}|||${color3}|||${color4}||${color9}||||||||||${else}\
    ${if_match ${memperc} <= 60}${color1}|||${color2}|||${color3}|||${color4}|||${color9}|||||||||${else}\
    ${if_match ${memperc} <= 65}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|${color9}||||||||${else}\
    ${if_match ${memperc} <= 70}${color1}|||${color2}|||${color3}|||${color4}|||${color5}||${color9}|||||||${else}\
    ${if_match ${memperc} <= 75}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color9}||||||${else}\
    ${if_match ${memperc} <= 80}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|${color9}|||||${else}\
    ${if_match ${memperc} <= 85}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}||${color9}||||${else}\
    ${if_match ${memperc} <= 90}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color9}|||${else}\
    ${if_match ${memperc} <= 95}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}|${color9}||${else}\
    ${if_match ${memperc}  < 100}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}||${color9}|${else}\
    ${if_match ${memperc} == 100}${color1}|||${color2}|||${color3}|||${color4}|||${color5}|||${color6}|||${color7}||${color8}|\
    ${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}${endif}\
    ${color}]
    ${hr}
    ${goto 20}${if_match ${cpu cpu1} >= 100}${color8}[]${endif}${goto 40}${if_match ${cpu cpu2} >= 100}${color8}[]${endif}${goto 60}${if_match ${cpu cpu3} >= 100}${color8}[]${endif}${goto 80}${if_match ${cpu cpu0} >= 100}${color8}[]${endif}${goto 100}${if_match ${memperc} >= 100}${color8}[]${endif}
    ${goto 20}${if_match ${cpu cpu1} >= 90}${color8}[]${endif}${goto 40}${if_match ${cpu cpu2} >= 90}${color8}[]${endif}${goto 60}${if_match ${cpu cpu3} >= 90}${color8}[]${endif}${goto 80}${if_match ${cpu cpu0} >= 90}${color8}[]${endif}${goto 100}${if_match ${memperc} >= 90}${color8}[]${endif}
    ${goto 20}${if_match ${cpu cpu1} >= 80}${color7}[]${endif}${goto 40}${if_match ${cpu cpu2} >= 80}${color7}[]${endif}${goto 60}${if_match ${cpu cpu3} >= 80}${color7}[]${endif}${goto 80}${if_match ${cpu cpu0} >= 80}${color7}[]${endif}${goto 100}${if_match ${memperc} >= 80}${color7}[]${endif}
    ${goto 20}${if_match ${cpu cpu1} >= 70}${color7}[]${endif}${goto 40}${if_match ${cpu cpu2} >= 70}${color7}[]${endif}${goto 60}${if_match ${cpu cpu3} >= 70}${color7}[]${endif}${goto 80}${if_match ${cpu cpu0} >= 70}${color7}[]${endif}${goto 100}${if_match ${memperc} >= 70}${color7}[]${endif}
    ${goto 20}${if_match ${cpu cpu1} >= 60}${color6}[]${endif}${goto 40}${if_match ${cpu cpu2} >= 60}${color6}[]${endif}${goto 60}${if_match ${cpu cpu3} >= 60}${color6}[]${endif}${goto 80}${if_match ${cpu cpu0} >= 60}${color6}[]${endif}${goto 100}${if_match ${memperc} >= 60}${color6}[]${endif}
    ${goto 20}${if_match ${cpu cpu1} >= 50}${color5}[]${endif}${goto 40}${if_match ${cpu cpu2} >= 50}${color5}[]${endif}${goto 60}${if_match ${cpu cpu3} >= 50}${color5}[]${endif}${goto 80}${if_match ${cpu cpu0} >= 50}${color5}[]${endif}${goto 100}${if_match ${memperc} >= 50}${color5}[]${endif}
    ${goto 20}${if_match ${cpu cpu1} >= 40}${color5}[]${endif}${goto 40}${if_match ${cpu cpu2} >= 40}${color5}[]${endif}${goto 60}${if_match ${cpu cpu3} >= 40}${color5}[]${endif}${goto 80}${if_match ${cpu cpu0} >= 40}${color5}[]${endif}${goto 100}${if_match ${memperc} >= 40}${color5}[]${endif}
    ${goto 20}${if_match ${cpu cpu1} >= 30}${color4}[]${endif}${goto 40}${if_match ${cpu cpu2} >= 30}${color4}[]${endif}${goto 60}${if_match ${cpu cpu3} >= 30}${color4}[]${endif}${goto 80}${if_match ${cpu cpu0} >= 30}${color4}[]${endif}${goto 100}${if_match ${memperc} >= 30}${color4}[]${endif}
    ${goto 20}${if_match ${cpu cpu1} >= 20}${color3}[]${endif}${goto 40}${if_match ${cpu cpu2} >= 20}${color3}[]${endif}${goto 60}${if_match ${cpu cpu3} >= 20}${color3}[]${endif}${goto 80}${if_match ${cpu cpu0} >= 20}${color3}[]${endif}${goto 100}${if_match ${memperc} >= 20}${color3}[]${endif}
    ${goto 20}${if_match ${cpu cpu1} >= 10}${color2}[]${endif}${goto 40}${if_match ${cpu cpu2} >= 10}${color2}[]${endif}${goto 60}${if_match ${cpu cpu3} >= 10}${color2}[]${endif}${goto 80}${if_match ${cpu cpu0} >= 10}${color2}[]${endif}${goto 100}${if_match ${memperc} >= 10}${color2}[]${endif}
    ${goto 20}${if_match ${cpu cpu1} >= 5}${color1}[]${endif}${goto 40}${if_match ${cpu cpu2} >= 5}${color1}[]${endif}${goto 60}${if_match ${cpu cpu3} >= 5}${color1}[]${endif}${goto 80}${if_match ${cpu cpu0} >= 5}${color1}[]${endif}${goto 100}${if_match ${memperc} >= 5}${color1}[]${endif}
    ${goto 20}${if_match ${cpu cpu1} >= 0}${color9}[]${endif}${goto 40}${if_match ${cpu cpu2} >= 0}${color9}[]${endif}${goto 60}${if_match ${cpu cpu3} >= 0}${color9}[]${endif}${goto 80}${if_match ${cpu cpu0} >= 0}${color9}[]${endif}${goto 100}${if_match ${memperc} >= 0}${color9}[]${endif}
    ${color}${goto 20}^${goto 40}^${goto 60}^${goto 80}^${goto 100}^
    ${goto 20}C${goto 40}C${goto 60}C${goto 80}C${goto 100}M
    ${goto 20}P${goto 40}P${goto 60}P${goto 80}P${goto 100}E
    ${goto 20}U${goto 40}U${goto 60}U${goto 80}U${goto 100}M
    ${goto 20}1${goto 40}2${goto 60}3${goto 80}0
    Last edited by Sector11; May 27th, 2013 at 08:12 PM.

Page 2200 of 2348 FirstFirst ... 1200170021002150219021982199220022012202221022502300 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •