-- 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 = 'bc', maximum_width = 1920, minimum_width = 1920, minimum_height = 5, border_width = 0, cpu_avg_samples = 2, default_color = 'white', default_outline_color = 'white', default_shade_color = 'white', draw_borders = false, draw_graph_borders = true, draw_outline = false, draw_shades = false, use_xft = true, font = 'Hack:size=10', gap_x = 0, gap_y = 0, net_avg_samples = 2, no_buffers = true, double_buffer = true, out_to_console = false, out_to_stderr = false, extra_newline = false, own_window = true, own_window_class = 'Conky', -- normal, desktop, dock, panel, override own_window_type = 'panel', own_window_transparent = true, own_window_hints = undecorated,below,sticky,skip_taskbar,skip_pager, own_window_argb_visual = true, stippled_borders = 0, update_interval = 1.0, uppercase = false, use_spacer = 'none', show_graph_scale = false, show_graph_range = false, default_bar_width = 50, color1 = '8fbcbb', color2 = '88c0d0', color3 = '81a1c1', color4 = '5e81ac', color5 = 'bf616a', color6 = 'd08770', color7 = 'ebcb8b', color8 = 'a3be8c', color9 = 'b48ead', } conky.text = [[ ${offset 55}${color3}cpu ${cpubar 4} \ ${offset 240}${color4}ram ${membar 4} \ ${offset 240}${color5}swap ${swapbar 4} \ ${offset 240}${color6}/ ${fs_bar 4 /} \ ${offset 240}${color7}/home ${fs_bar 4 /home} \ ${offset 240}${color8}wireless ${wireless_link_bar wlan0} ]]