Bem-vindo: Seg, 29 de Abril 2024, 1:29 Pesquisa avançada

Mostre o seu Desktop!

Apresente aqui temas que gostou, skins de programas, ícones, wallpapers, conky's, etc. Ou seja, tudo o que possa alterar de estético no seu Ubuntu, apresente aqui. Em caso de dúvidas de personalização ou se quiser mostrá-la ao mundo, utilize esta secção!

Re: Mostre o seu Desktop!

Mensagempor Claudio Novais » Seg, 27 de Agosto 2012, 1:03

faça um sleep mais demorado! Crie um tópico separado para averiguarmos a situação. Não se esqueça de fazer um título esclarecedor e de incluir, claro, o script e configuração do conky. ;)
Avatar do usuário
Claudio Novais
Editor do Ubuntued
 
Mensagens: 16869
Registrado em: 25 Maio, 2011

Re: Mostre o seu Desktop!

Mensagempor Saresa » Seg, 27 de Agosto 2012, 4:08

Vou criar, obrigada!
Avatar do usuário
Saresa
 
Mensagens: 306
Registrado em: 17 Setembro, 2011
Localização: Sorocaba-SP, Brasil

Re: Mostre o seu Desktop!

Mensagempor Roger Braga » Seg, 27 de Agosto 2012, 20:56

((ºº)) ADIDAS ((ºº))
  • Sistema Operativo: Ubuntu 12.04.1 LTS
  • Tema: Grayrevenge
  • Ambiente Gráfico: Unity 2D
  • Ícones: Cylon
  • Wallpaper: http://i.imgur.com/0Hl0o.jpg
  • Outros:
    • AWN;
    • Covergloobus: Maverido;
    • Conky;
      Spoiler:
      Código: Selecionar todos
      ############################################################################################
      #                                                                                          #
      #  .conkyrc (version 1.01)                                                                 #
      #  A clean, simple, yet useful configuration code for conky                                #
      #                                                                                          #
      #  Written by Petro Dawg (aka Greg):                                                       #
      #  Last updated on 8/26/12                                                                 #
      #  Based on source code from http://lonelymachines.org/2012/08/16/simple-conky-config/     #
      #    > This version has been significately modified to meet my needs and reorganized to    #
      #      add clarity for anyone wanting to modify the code further to meet their own needs.  #
      #                                                                                          #
      #  Displays the following PC information on the Desktop within an embedded window:         #
      #    > CPU temp                                                                            #
      #    > CPU operating speed                                                                 #
      #    > Individual core usage                                                               #
      #    > Top 4 processes using CPU resources                                                 #
      #    > Total RAM                                                                           #
      #    > Active RAM amount                                                                   #
      #    > Top 4 processes using RAM resources                                                 #
      #    > Root folder size and memory used                                                    #
      #    > Home folder size and memory used                                                    #
      #    > USB drive size and memory used                                                      #
      #    > IP Address                                                                          #
      #    > Download speed and data Received                                                    #
      #    > Upload speed and data Sent                                                          #
      #                                                                                          #
      #  Requires installation of:                                                               #
      #    > conky (available in software center)                                                #
      #    > lm-sensors (available in software center)                                           #
      #                                                                                          #
      #  Additional information and resources:                                                   #
      #    > To run conky at startup, create an empty file in your home folder, name it          #
      #      ".conky-startup.sh" and copy the following 2 lines in it:                           #
      #           !/bin/bash                                                                     #
      #           sleep 15 && conky ;                                                            #
      #      Add the path to the .conky-startup.sh file within Startup Applications.             #
      #    > http://conky.sourceforge.net/                                                       #
      #    > http://www.graphviz.org/doc/info/colors.html                                        #
      #    > http://www.december.com/html/spec/colorhex.html                                     #
      #                                                                                          #
      #  Upate Log:                                                                              #
      #    > Version 1.01 (8/26/12)                                                              #
      #      - USB output will disappear from Conky when USB drive is ejected                    #
      ############################################################################################

      #conky performance settings
        use_xft yes
        xftalpha 0.9
        update_interval 3.0
        total_run_times 0
        cpu_avg_samples 4
        no_buffers no
        double_buffer yes
        override_utf8_locale no

      #overall position of conky window
        alignment top_right
        gap_x 12
        gap_y 35
        minimum_size 180 5
        maximum_width 180

      #overall appearance of conky window
        own_window yes
        own_window_type normal
        own_window_transparent yes
        own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
        draw_borders no

      #default text apperance
        font Ubuntu:bold:size=11
        default_color khaki1
        draw_shades yes
        draw_outline yes
        default_shade_color white
        default_outline_color black
        uppercase no

      #border around graphs
        draw_graph_borders yes

      #color I assigned to graphical output features (bars/graphs)
        color2 grey 

      #colors I assigned to items in top processes display
        color3 orangered
        color4 orange
        color5 yellow
        color6 olivedrab1


      ############################################################################################
      #                                                                                          #
      #  The code below 'TEXT' will control what is displayed by conky:                          #
      #   -> In the interest of clarity, the system outputs are divided into four related groups #
      #      (i.e. all code related to the CPU is in one grouping of adjacent lines while code   #
      #      related to RAM is in another grouping of adjacent lines).  Each group is hereafter  #
      #      refered to as a 'TEXT code block'.                                                  #
      #   -> To best fit your screen, adjust the overall vertical length of the display by       #
      #      adding or deleting empty lines either before or after the TEXT code blocks below.   #
      #                                                                                          #
      ############################################################################################
      TEXT



      # TEXT code block 1: START
      ############################################################################################
      #                                                                                          #
      #  The first TEXT code block displays CPU information                                      #
      #   -> Temperature displayed is the PCI Adapter temp1 output on same line as 'high' output #
      #   -> Requires the installation of lm-sensors to work:  sudo apt-get lm-sensors           #
      #   -> After installation run:  sensors-detect      (answer yes to all)                    #
      #   -> Run 'sensors' in terminal to determine which line needs grep & which columns        #
      #      needs to be cut.                                                                    #
      #   -> Replace:  ${cpubar cpu1 10} with ${cpugraph cpu1 FFFF00 FF0000} to change to graph  #
      #      output of CPU1 usage.                                                               #
      #   -> 'FFFF00' and 'FF0000' are HEX color codes and can be replaced with whatever colors  #
      #      you like.  Goto www.graphviz.org/doc/info/colors.html for color information (hold   #
      #      mouse over color to see HEX code for that color).                                   #
      #   -> Add outputs for more cores by adding the following lines below the 'cpu2' lines:    #
      #           Core '#': ${alignr}${cpu cpu'#'}%                                              #
      #           ${color2}${cpubar cpu'#' 10}${color}                                           #
      #      (repeat for each additional core up to the total number of cores in the system)     #     
      #      (replace each '#' with the number of the core (i.e. 3 or 4))                        #
      #   -> If you have a single core simply delete the 2 lines containing 'cpu2'               #
      #                                                                                          #
      ############################################################################################
      CPU Temp: $alignr${exec sensors | grep 'high' | cut -c16-19}C${color}
      CPU Speed: ${alignr}${freq}MHz
      Core 1: ${alignr}${cpu cpu1}%
      ${color2}${cpubar cpu1 10}${color}
      Core 2: ${alignr}${cpu cpu2}%
      ${color2}${cpubar cpu2 10}${color}
      ${font Ubuntu:size=10}${color3}${top name 1}$alignr${top cpu 1}
      ${color4}${top name 2}$alignr${top cpu 2}
      ${color5}${top name 3}$alignr${top cpu 3}
      ${color6}${top name 4}$alignr${top cpu 4}${font}${color}
      # TEXT code block 1: END
         



      # TEXT code block 2: START
      ############################################################################################
      #                                                                                          #
      #  Second TEXT code block displays RAM information:                                        #
      #   -> Replace ${membar 10} with ${memgraph FFFF00 FF0000} to change to graph output of    #
      #      RAM usage. (I did not find this very useful as RAM usage is usually fairly steady   #
      #      on my sytem.)                                                                       #
      #                                                                                          #
      ############################################################################################
      RAM Total: ${alignr}$memmax
      Active: ${alignr}$mem ($memperc%)
      ${color2}${membar 10}${color}
      ${font Ubuntu:size=10}${color3}${top_mem name 1}$alignr${top_mem mem 1}
      ${color4}${top_mem name 2}$alignr${top_mem mem 2}
      ${color5}${top_mem name 3}$alignr${top_mem mem 3}
      ${color6}${top_mem name 4}$alignr${top_mem mem 4}${font}${color}
      # TEXT code block 2: END



       
      # TEXT code block 3: START
      ############################################################################################
      #                                                                                          #
      #  Third TEXT code block displays Filesystem information:                                  #
      #   -> The USB information is specific to the USB drive I most commonly use on my computer #
      #      (USB20FD).  Make sure to replace 'USB20FD' with the name of the USB drive used.     #
      #                                                                                          #
      ############################################################################################
      Root: ${alignr}${fs_used /} / ${fs_size /}
      ${color2}${fs_bar 10 /}${color}
      Home: ${alignr}${fs_used /home} / ${fs_size /home}
      ${color2}${fs_bar 10 /home}${color}
      ${if_existing  /}ROOT: ${alignr}${fs_used /} / ${fs_size /}
      ${color2}${fs_bar 10 /}${color} ${else}
      ${endif}
      # TEXT code block 3: END



      # TEXT code block 4: START
      ############################################################################################
      #                                                                                          #
      #  Fourth TEXT code block displays Network information:                                    #
      #   -> A graphical output of download information can be displayed by adding the following #
      #      line of code between the line starting with 'Down' and the line begining with       #
      #      'Up':                                                                               #
      #      ${color2}${downspeedgraph eth0 FFFF00 FF0000}${color}                              #
      #   -> A graphical output of upload information can be displayed by adding the following   #
      #      line of code between after the line begining with 'Up':                             #
      #      ${color2}${upspeedgraph eth0 FFFF00 FF0000}${color}                                #
      #   -> 'FFFF00' and 'FF0000' are HEX color codes and can be replaced with whatever colors  #
      #      you like.  Goto www.graphviz.org/doc/info/colors.html for color information (hold   #
      #      mouse over color to see HEX code for that color).                                   #
      #                                                                                          #
      ############################################################################################
      IP Address: ${alignr}${addr eth0}
      Down: ${downspeed eth0}/s ${alignr}${totaldown eth0}
      Up: ${upspeed eth0}/s ${alignr}${totalup eth0}
      # TEXT code block 4: END

AGARB REGOR


Imagem
:ubuntued: "Somente seres humanos excepcionais e irrepreensíveis suscitam ideias generosas e ações elevadas. O conhecimento é limitado. A imaginação envolve ao mundo."
:ubuntued:
Avatar do usuário
Roger Braga
Mr. Deskmod
 
Mensagens: 755
Registrado em: 04 Julho, 2011
Localização: São Paulo, BRASIL

Re: Mostre o seu Desktop!

Mensagempor Saresa » Ter, 28 de Agosto 2012, 6:54

nekrolog (24-08-2012, 23:00) escreveu:
Claudio Novais (24-08-2012, 12:27) escreveu:
nekrolog (23-08-2012, 23:56) escreveu:
Spoiler:
Rodrigo Centofante (21-08-2012, 20:17) escreveu:
escurecendo



Que aplicativo é este mostrando a data e hora? É um screenlet? Pode passar o repositório?

Possivelmente é um Conky. Pode ser outra coisa qualquer, mas normalmente os conkys têm esse aspeto. Isso não é mais que um simples Conky a mostrar as suas variáveis de informação do sistema com uma font estilosa! ;)

Veja por exemplos estes conkys:
http://joerg285.deviantart.com/art/Quee ... -302061333
http://shironov.deviantart.com/art/My-D ... -289218568


Legal! Mas simplismente não sei como usar esses conkys até consegui instalar e peguei uns scripts mas não sei como roda-los, ainda mais que quando teclo ALT+F12 para rodálos nao contece nada, não sei porque. Tentei seguir o tutorial do Ubuntued Blog mas não consegui achei complicado ainda mais para mim que sou usuario linux a pouco tempo.

Dei uma olhada nesses dois Conkys... que na verdade são Rainmeters! É um programa semelhante, só que pra Windows! Por isso o nekrolog não conseguia configurar =P

Mas ainda bem que deu tudo certo depois! :D
Avatar do usuário
Saresa
 
Mensagens: 306
Registrado em: 17 Setembro, 2011
Localização: Sorocaba-SP, Brasil

Re: Mostre o seu Desktop!

Mensagempor Roger Braga » Ter, 28 de Agosto 2012, 16:24

((ºº)) DE OLHO ((ºº))
  • Sistema Operativo: Ubuntu 12.04.1 LTS
  • Tema: Selene
  • Ambiente Gráfico: Unity 2D
  • Ícones: Fekete
  • Wallpaper: http://i.imgur.com/h3WyR.png
  • Outros:
    • AWN;
    • Covergloobus: Medusa;
    • Conky;
      Spoiler:
      Código: Selecionar todos
      use_xft yes
      xftfont 123:size=8
      xftalpha 0.1
      update_interval 1
      total_run_times 0
      own_window no
      own_window_type override
      own_window_transparent yes
      own_window_hints undecorated,below,sticky,skip_pager,skip_taskbar
      double_buffer yes
      minimum_size 350 5
      maximum_width 1620
      draw_shades no
      draw_outline no
      draw_borders no
      draw_graph_borders no
      default_color e1991c
      default_shade_color dddddd
      default_outline_color green
      alignment top_left
      gap_x 40
      gap_y 450
      no_buffers yes
      uppercase no
      cpu_avg_samples 2
      net_avg_samples 1
      override_utf8_locale yes
      net_avg_samples 2



       
      TEXT
      ${voffset -395}${offset 55}${font Sans:pixelsize=20}${if_up eth0}${color 000000}eth${offset 9} ${color e1991c} ${addr eth0} ${endif} ${offset 20} ${if_up wlan0} ${color 000000}wifi ${offset 9} ${color e1991c} ${addr wlan0}${endif}${offset 20}${color 000000}default route ${offset 9}${color e1991c}${gw_ip}${offset 20}${color 000000}dns-server${offset 9}${color e1991c}${nameserver}${offset 20}${color 000000}▼${offset 9}${color e1991c}${downspeed eth0} k/s${offset 20} ${color 000000}▲${offset 9} ${color e1991c}${upspeed eth0} k/s${offset 20}${color 000000}▼${offset 9} ${color e1991c}${totaldown eth0}${offset 20}${color 000000}▲${offset 9} ${color e1991c}${totalup eth0}${offset 20}
      ${voffset 5}${offset 55}${font Sans:pixelsize=20}${color 000000}kernel${offset 20}${color e1991c}$kernel${color 000000}${offset 20}uptime ${offset 9}${color e1991c}$uptime${offset 20}${color 000000}temp ${offset 9}${color e1991c}${acpitemp}C${offset 20}${color 000000}root ${offset 9}${color e1991c}${fs_free /} / ${fs_size /}${color 000000}${offset 20}home${offset 9}${color e1991c}${fs_free /home} / ${fs_size /home}${offset 20}${color 000000}ram ${offset 9}${color e1991c}$mem / $memmax${offset 20}${color 000000}cpu${offset 9}${color e1991c}${cpu cpu1}%
      ${voffset 750}${color 000000}${font Ubuntu:pixelsize=95}${offset -10}${time %H:}${color e1991c}${time %M}
      ${voffset -100}${color 000000}${font Ubuntu:pixelsize=25}${offset -28}_____________________________________________________________________________
      ${voffset 10}${offset 152}${color 000000}${font Ubuntu:pixelsize=16} ${time %Y}${offset 25}${time %A}${offset 25}${time  %B}${offset 5}${color e1991c}${time %d}${offset -380}$nodename
      ${color 000000}${font Ubuntu:pixelsize=22}${voffset -34}

AGARB REGOR


Imagem
:ubuntued: "Somente seres humanos excepcionais e irrepreensíveis suscitam ideias generosas e ações elevadas. O conhecimento é limitado. A imaginação envolve ao mundo."
:ubuntued:
Avatar do usuário
Roger Braga
Mr. Deskmod
 
Mensagens: 755
Registrado em: 04 Julho, 2011
Localização: São Paulo, BRASIL

Re: Mostre o seu Desktop!

Mensagempor Luis Cardoso » Qua, 29 de Agosto 2012, 11:20

KDE - Fedora 17
  • Sistema Operativo: Fedora 17 (Beefy Miracle)
  • Tema: Oxygen
  • Ambiente Gráfico: KDE
  • Ícones: KFaenza
  • Wallpaper: Acompanha o Fedora 17 (versão Gnome)
  • Outros:
    • Ambiente de trabalho: Androbit.
ImagemImagem
«Escolhe um trabalho de que gostes, e não terás que trabalhar um só dia na tua vida» - Confúcio
Avatar do usuário
Luis Cardoso
Redator
 
Mensagens: 10455
Registrado em: 26 Maio, 2011
Localização: Portugal

Re: Mostre o seu Desktop!

Mensagempor Claudio Novais » Qua, 29 de Agosto 2012, 14:17

Ubuntued Blue Adwaita
  • Sistema Operativo: Ubuntu 12.04.1 LTS
  • Tema: Adwaita-X-Light
  • Ambiente Gráfico: Gnome-Shell
  • Ícones: Faiencemac
  • Wallpaper: http://i.imgur.com/sqXMB.jpg
  • Extensões Gnome-Shell:
  • Conky-Mira:
    Spoiler:
    • .conkyrc_clock
      Código: Selecionar todos
      # Use Xft?
      use_xft yes
      xftfont cure:size=6

      # Update interval in seconds
      update_interval 1

      # This is the number of times Conky will update before quitting.
      # Set to zero to run forever.
      total_run_times 0

      # Create own window instead of using desktop (required in nautilus)
      own_window  yes
      own_window_transparent no
      own_window_type widget
      own_window_hints undecorate,sticky,skip_taskbar,skip_pager

      # Use double buffering (reduces flicker, may not work for everyone)
      double_buffer yes

      # Minimum size of text area
      minimum_size 280 5

      maximum_width 87

      # Draw shades?
      draw_shades no

      # Draw outlines?
      draw_outline no

      # Draw borders around text
      draw_borders yes

      # Stippled borders?
      stippled_borders 0

      # border margins
      border_outer_margin 5

      # border width
      border_width 1

      # Default colors and also border colors
      default_color 303030
      #default_shade_color white
      #default_outline_color black
      own_window_colour 020201

      # Text alignment, other possible values are commented
      #alignment top_left
      alignment top_right
      #alignment bottom_left
      #alignment bottom_right

      # Gap between borders of screen and text
      # same thing as passing -x at command line
      gap_x 20
      gap_y 45

      # Subtract file system buffers from used memory?
      no_buffers yes

      # set to yes if you want all text to be in uppercase
      uppercase no

      # number of cpu samples to average
      # set to 1 to disable averaging
      cpu_avg_samples 2

      # number of net samples to average
      # set to 1 to disable averaging
      net_avg_samples 2

      # Force UTF8? note that UTF8 support required XFT
      override_utf8_locale yes

      # Add spaces to keep things from moving about?  This only affects certain objects.
      use_spacer yes


      TEXT
      ${color a4a4a4}${alignc 28}${font DotMatrix:size=16}${time %k:%M}
      ${font}${color 668ABF}${alignc}${voffset -10}${time %A}

      ${color 9AB7DC}Data:${color a4a4a4}${alignr}${time %D}
    • .conkyrc_disk
      Código: Selecionar todos
      # Use Xft?
      use_xft yes
      xftfont cure:size=6

      # Update interval in seconds
      update_interval 1

      # This is the number of times Conky will update before quitting.
      # Set to zero to run forever.
      total_run_times 0

      # Create own window instead of using desktop (required in nautilus)
      own_window  yes
      own_window_transparent no
      own_window_type widget
      own_window_hints undecorate,sticky,skip_taskbar,skip_pager


      # Use double buffering (reduces flicker, may not work for everyone)
      double_buffer yes

      # Minimum size of text area
      minimum_size 280 5

      maximum_width 87

      # Draw shades?
      draw_shades no

      # Draw outlines?
      draw_outline no

      # Draw borders around text
      draw_borders yes

      # Stippled borders?
      stippled_borders 0

      # border margins
      border_outer_margin 5

      # border width
      border_width 1

      # Default colors and also border colors
      default_color 303030
      #default_shade_color white
      #default_outline_color black
      own_window_colour 020201

      # Text alignment, other possible values are commented
      #alignment top_left
      alignment top_right
      #alignment bottom_left
      #alignment bottom_right

      # Gap between borders of screen and text
      # same thing as passing -x at command line
      gap_x 20
      gap_y 482

      # Subtract file system buffers from used memory?
      no_buffers yes

      # set to yes if you want all text to be in uppercase
      uppercase no

      # number of cpu samples to average
      # set to 1 to disable averaging
      cpu_avg_samples 2

      # number of net samples to average
      # set to 1 to disable averaging
      net_avg_samples 2

      # Force UTF8? note that UTF8 support required XFT
      override_utf8_locale yes

      # Add spaces to keep things from moving about?  This only affects certain objects.
      use_spacer yes

      TEXT
      ${color 9AB7DC}Disk IO:${color a4a4a4} ${alignr 4}$diskio
      ${color 668ABF}${diskiograph 20,85 668ABF 9AB7DC}
      ${color 9AB7DC}Raiz:     ${color a4a4a4}${fs_free /}
      ${color 668ABF}${fs_bar 3,85 /}
      ${color 9AB7DC}Home:      ${color a4a4a4}${fs_free /home}
      ${color 668ABF}${fs_bar 3,85 /home}
    • .conkyrc_net
      Código: Selecionar todos
      # Use Xft?
      use_xft yes
      xftfont cure:size=6

      # Update interval in seconds
      update_interval 1

      # This is the number of times Conky will update before quitting.
      # Set to zero to run forever.
      total_run_times 0

      # Create own window instead of using desktop (required in nautilus)
      own_window  yes
      own_window_transparent no
      own_window_type widget
      own_window_hints undecorate,sticky,skip_taskbar,skip_pager


      # Use double buffering (reduces flicker, may not work for everyone)
      double_buffer yes

      # Minimum size of text area
      minimum_size 280 5

      maximum_width 87

      # Draw shades?
      draw_shades no

      # Draw outlines?
      draw_outline no

      # Draw borders around text
      draw_borders yes

      # Stippled borders?
      stippled_borders 0

      # border margins
      border_outer_margin 5

      # border width
      border_width 1

      # Default colors and also border colors
      default_color 303030
      #default_shade_color white
      #default_outline_color black
      own_window_colour 020201

      # Text alignment, other possible values are commented
      #alignment top_left
      alignment top_right
      #alignment bottom_left
      #alignment bottom_right

      # Gap between borders of screen and text
      # same thing as passing -x at command line
      gap_x 20
      gap_y 355

      # Subtract file system buffers from used memory?
      no_buffers yes

      # set to yes if you want all text to be in uppercase
      uppercase no

      # number of cpu samples to average
      # set to 1 to disable averaging
      cpu_avg_samples 2

      # number of net samples to average
      # set to 1 to disable averaging
      net_avg_samples 2

      # Force UTF8? note that UTF8 support required XFT
      override_utf8_locale yes

      # Add spaces to keep things from moving about?  This only affects certain objects.
      use_spacer yes

      TEXT
      ${color 9AB7DC}Up:${color a4a4a4}${alignr}${upspeed wlan0}KB/s
      ${color 668ABF}${upspeedgraph wlan0 20,85 668ABF 9AB7DC}
      ${color 9AB7DC}Total: ${color a4a4a4}${totalup wlan0}

      ${color 9AB7DC}Down:${color a4a4a4}${alignr}${downspeed wlan0}KB/s
      ${color 668ABF}${downspeedgraph wlan0 20,85 668ABF 9AB7DC}
      ${color 9AB7DC}Total: ${color a4a4a4}${totaldown wlan0}
    • .conkyrc_sys
      Código: Selecionar todos
      # Use Xft?
      use_xft yes
      xftfont cure:size=6

      # Update interval in seconds
      update_interval 1

      # This is the number of times Conky will update before quitting.
      # Set to zero to run forever.
      total_run_times 0

      # Create own window instead of using desktop (required in nautilus)
      own_window  yes
      own_window_transparent no
      own_window_type widget
      own_window_hints undecorate,sticky,skip_taskbar,skip_pager

      # Use double buffering (reduces flicker, may not work for everyone)
      double_buffer yes

      # Minimum size of text area
      minimum_size 280 5

      maximum_width 87

      # Draw shades?
      draw_shades no

      # Draw outlines?
      draw_outline no

      # Draw borders around text
      draw_borders yes

      # Stippled borders?
      stippled_borders 0

      # border margins
      border_outer_margin 5

      # border width
      border_width 1

      # Default colors and also border colors
      default_color 303030
      #default_shade_color white
      #default_outline_color black
      own_window_colour 020201

      # Text alignment, other possible values are commented
      #alignment top_left
      alignment top_right
      #alignment bottom_left
      #alignment bottom_right

      # Gap between borders of screen and text
      # same thing as passing -x at command line
      gap_x 20
      gap_y 120

      # Subtract file system buffers from used memory?
      no_buffers yes

      # set to yes if you want all text to be in uppercase
      uppercase no

      # number of cpu samples to average
      # set to 1 to disable averaging
      cpu_avg_samples 2

      # number of net samples to average
      # set to 1 to disable averaging
      net_avg_samples 2

      # Force UTF8? note that UTF8 support required XFT
      override_utf8_locale yes

      # Add spaces to keep things from moving about?  This only affects certain objects.
      use_spacer yes

      TEXT
      ${color 9AB7DC}Kernel:${color a4a4a4}${alignr}$kernel
      ${color 9AB7DC}UpTime:${color a4a4a4}${alignr}$uptime

      ${color 9AB7DC}Cpu1:${color a4a4a4}${alignr}${cpu cpu1}% ${color 668ABF}${execi 20 sensors acpitz-virtual-0 |grep temp1 |awk '{print $2}'}
      ${color 668ABF}${cpugraph cpu1 20,85 668ABF 9AB7DC}
      ${color 9AB7DC}Cpu2:${color a4a4a4}${alignr}${cpu cpu2}% ${color 668ABF}${execi 20 sensors acpitz-virtual-0 |grep temp1 |awk '{print $2}'}
      ${color 668ABF}${cpugraph cpu2 20,85 668ABF 9AB7DC}
      ${color 9AB7DC}Cpu3:${color a4a4a4}${alignr}${cpu cpu3}% ${color 668ABF}${execi 20 sensors acpitz-virtual-0 |grep temp1 |awk '{print $2}'}
      ${color 668ABF}${cpugraph cpu3 20,85 668ABF 9AB7DC}
      ${color 9AB7DC}Cpu4:${color a4a4a4}${alignr}${cpu cpu4}% ${color 668ABF}${execi 20 sensors acpitz-virtual-0 |grep temp1 |awk '{print $2}'}
      ${color 668ABF}${cpugraph cpu4 20,85 668ABF 9AB7DC}

      ${color 9AB7DC}Ram:${color a4a4a4}${alignr}$mem
      ${color 668ABF}${membar 3,85}
Avatar do usuário
Claudio Novais
Editor do Ubuntued
 
Mensagens: 16869
Registrado em: 25 Maio, 2011

Re: Mostre o seu Desktop!

Mensagempor João Ferretti » Qui, 30 de Agosto 2012, 2:09


  • Sistema Operativo: Ubuntu 11.10 (Oneiric Ocelot)
  • Tema: reNIX
  • Ambiente Gráfico: Unity
  • Ícones: Nitrux OS Icons
  • Wallpaper: do sistema
Avatar do usuário
João Ferretti
 
Mensagens: 78
Registrado em: 01 Novembro, 2011
Localização: Lorena,SP,Brasil

Re: Mostre o seu Desktop!

Mensagempor Claudio Novais » Qui, 30 de Agosto 2012, 9:58

João Ferretti, que conky é esse? 8|
Avatar do usuário
Claudio Novais
Editor do Ubuntued
 
Mensagens: 16869
Registrado em: 25 Maio, 2011

Re: Mostre o seu Desktop!

Mensagempor João Ferretti » Qui, 30 de Agosto 2012, 15:50

Claudio Novais (30-08-2012, 9:58) escreveu:João Ferretti, que conky é esse? 8|


Ola Claudio! O conky é o Paradoxxxzero! Eu não lembro de onde o baixei,mas aqui esta ele:
https://rapidshare.com/files/1329057559 ... 5b3131.zip
Avatar do usuário
João Ferretti
 
Mensagens: 78
Registrado em: 01 Novembro, 2011
Localização: Lorena,SP,Brasil

AnteriorPróximo

Voltar para Temas do Ubuntu

Quem está online

Usuários navegando neste fórum: Majestic-12 [Bot] e 41 visitantes