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!
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.
############################################################################################ # # # .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
"Somente seres humanos excepcionais e irrepreensíveis suscitam ideias generosas e ações elevadas. O conhecimento é limitado. A imaginação envolve ao mundo."
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!
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
"Somente seres humanos excepcionais e irrepreensíveis suscitam ideias generosas e ações elevadas. O conhecimento é limitado. A imaginação envolve ao mundo."
# 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}
# 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
# 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
# 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