-- vim: ts=4 sw=4 noet ai cindent syntax=lua --[[ Conky, a system monitor, based on torsmo Any original torsmo code is licensed under the BSD license All code written since the fork of torsmo is licensed under the GPL Please see COPYING for details Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen Copyright (c) 2005-2012 Brenden Matthews, Philip Kovacs, et. al. (see AUTHORS) All rights reserved. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . ]] conky.config = { alignment = 'top_left', background = false, border_width = 1, cpu_avg_samples = 2, default_color = '8E6944', default_outline_color = 'EEC17B', default_shade_color = '473228', draw_borders = false, draw_graph_borders = true, draw_outline = false, draw_shades = false, use_xft = true, -- font = 'DejaVu Sans Mono:size=12', font = 'nztt:size=10', gap_x = 5, gap_y = 60, minimum_height = 5, minimum_width = 5, net_avg_samples = 2, no_buffers = true, out_to_console = false, out_to_stderr = false, extra_newline = false, own_window = true, own_window_class = 'Conky', -- own_window_type = 'desktop', own_window_type = 'normal', own_window_colour = '33201A', stippled_borders = 0, update_interval = 4.0, uppercase = false, use_spacer = 'none', show_graph_scale = false, show_graph_range = false } -- will define these here later -- when i figure out the correct syntax. --digits.colours = [[ --bak = '33201A', --lbak = '473228', --tex = '8E6944', --ltex = 'FEC27B', --]] conky.text = [[ ${scroll 64 $nodename - $sysname $kernel on $machine | } $hr ${color 473228}Uptime:$color $uptime | ${color 473228}Date: $color${exec date '+%Y %m %e %H:%M'} ${color 473228}Frequency :$color $freq MHz ${color 473228}/$color $freq_g GHz ${color 473228}RAM Usage:$color $mem/$memmax - $memperc% ${membar 12} ${color 473228}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 12} ${color 473228}CPU Usage:$color $cpu% ${cpubar 12} ${color 473228}Processes:$color $processes ${color 473228}Running:$color $running_processes ${color 473228}Temp:$color ${hwmon 0 temp 1}${color 473228}C $hr ${color 473228}File systems: / $color${fs_used /}/${fs_size /} ${fs_bar 12 /} ${color 473228}Networking: Up:$color ${upspeed eth0} ${color 473228} - Down:$color ${downspeed eth0} $hr ${color 473228}Name PID CPU% MEM% ${color FEC27B} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1} ${color FEC27B} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2} ${color FEC27B} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3} ${color FEC27B} ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4} $hr ]]