Skip to content

Instantly share code, notes, and snippets.

@nicklozon
Last active August 29, 2015 14:12
Show Gist options
  • Save nicklozon/b86f3d8f8d93ee1411b0 to your computer and use it in GitHub Desktop.
Save nicklozon/b86f3d8f8d93ee1411b0 to your computer and use it in GitHub Desktop.
# 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-2010 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 <http://www.gnu.org/licenses/>.
#
alignment top_left
background no
border_width 1
cpu_avg_samples 2
default_color 5E898B
default_outline_color black
default_shade_color grey
draw_borders no
draw_graph_borders yes
draw_outline no
draw_shades no
use_xft yes
xftfont Source Sans Pro:bold:size=12
gap_x 550
gap_y 50
minimum_size 500 5
net_avg_samples 2
no_buffers yes
out_to_console no
out_to_stderr no
extra_newline no
own_window yes
own_window_class Conky
own_window_type desktop
stippled_borders 0
update_interval 1.0
uppercase no
use_spacer none
show_graph_scale no
show_graph_range no
own_window_argb_visual true
own_window_transparent true
own_window_hints undecorate,sticky,skip_taskbar,skip_pager
double_buffer yes
TEXT
${font Amatic SC:bold:size=112}${alignc}${color #181c28}${time %I:%M%P}${font Amatic SC:bold:size=24}
${alignc}${color #181c28}${time %A, %B %d}$font
${voffset 25}${alignc}\
CPU:${font Source Sans Pro} $cpu% | ${font}\
MEM:${font Source Sans Pro} $memperc% | ${font}\
HDD:${font Source Sans Pro} $fs_used_perc% | ${font}\
Processes:${font Source Sans Pro} $running_processes/$processes
@nicklozon
Copy link
Author

gap_x 550 is custom to my monitor. When using dual monitors with alignment top_middle, it would center in the middle of both monitors sitched together, so this is the work around.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment