new file format

This commit is contained in:
n 2017-05-19 23:25:36 +02:00
parent 7f1c5a01b3
commit 831b9106da
1 changed files with 84 additions and 80 deletions

View File

@ -1,113 +1,116 @@
conky.config = {
# GonKyrellM -- GonKyrellM
# --
# Conky, GKrellM style - with "invisible" theme (well, sort of) -- Conky, GKrellM style - with "invisible" theme (well, sort of)
# --
# based on http://sen7.deviantart.com/art/Conky-Mira-100078939 -- based on http://sen7.deviantart.com/art/Conky-Mira-100078939
# and https://www.gnome-look.org/content/show.php/Conky+Box?content=81894 -- and https://www.gnome-look.org/content/show.php/Conky+Box?content=81894
# Use Xft? -- Use Xft?
use_xft yes use_xft = true,
xftfont cure:size=8 font = 'cure:size=8',
background yes background = true,
double_buffer yes double_buffer = true,
# Update interval in seconds -- Update interval in seconds
update_interval 0.5 update_interval = 0.5,
# This is the number of times Conky will update before quitting. -- This is the number of times Conky will update before quitting.
# Set to zero to run forever. -- Set to zero to run forever.
total_run_times 0 total_run_times = 0,
# Create own window instead of using desktop (required in nautilus) -- Create own window instead of using desktop (required in nautilus)
own_window yes own_window = true,
own_window_transparent yes own_window_transparent = true,
own_window_type override own_window_type = 'override',
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
own_window_argb_visual no own_window_argb_visual = false,
draw_graph_borders false draw_graph_borders = false,
#default_bar_size 99 2 --default_bar_size 99 2
# Use double buffering (reduces flicker, may not work for everyone) -- Use double buffering (reduces flicker, may not work for everyone)
double_buffer yes double_buffer = true,
# Minimum size of text area -- Minimum size of text area
#minimum_size 280 5 --minimum_size 280 5
maximum_width 97 maximum_width = 97,
# Draw shades? -- Draw shades?
draw_shades yes draw_shades = true,
# Draw outlines? -- Draw outlines?
draw_outline no draw_outline = false,
# Draw borders around text -- Draw borders around text
draw_borders no draw_borders = false,
# Stippled borders? -- Stippled borders?
stippled_borders 0 stippled_borders = 0,
# border margins -- border margins
# border_margin 5 -- border_margin 5
# border width -- border width
border_width 0 border_width = 0,
# Default colors and also border colors -- Default colors and also border colors
#default_color 303030 --default_color 303030
#default_color ffffff --default_color ffffff
#default_shade_color white --default_shade_color white
#default_outline_color black --default_outline_color black
#own_window_colour 292C36 --own_window_colour 292C36
# Text alignment, other possible values are commented -- Text alignment, other possible values are commented
alignment top_left alignment = 'top_left',
#alignment top_right --alignment top_right
#alignment bottom_left --alignment bottom_left
#alignment bottom_right --alignment bottom_right
# Subtract file system buffers from used memory? -- Subtract file system buffers from used memory?
no_buffers yes no_buffers = true,
# set to yes if you want all text to be in uppercase -- set to yes if you want all text to be in uppercase
uppercase no uppercase = false,
# number of cpu samples to average -- number of cpu samples to average
# set to 1 to disable averaging -- set to 1 to disable averaging
cpu_avg_samples 2 cpu_avg_samples = 2,
# number of net samples to average -- number of net samples to average
# set to 1 to disable averaging -- set to 1 to disable averaging
net_avg_samples 2 net_avg_samples = 2,
# Force UTF8? note that UTF8 support required XFT -- Force UTF8? note that UTF8 support required XFT
override_utf8_locale yes override_utf8_locale = true,
# Add spaces to keep things from moving about? This only affects certain objects. -- Add spaces to keep things from moving about? This only affects certain objects.
#use_spacer left --use_spacer left
# Useful shortenings # -- Useful shortenings #
short_units yes short_units = true,
format_human_readable yes format_human_readable = true,
pad_percents 0 pad_percents = 0,
top_name_width 12 top_name_width = 12,
# Color scheme -- Color scheme
color1 668ABF color1 = '#668ABF',
color2 FFFFFF color2 = '#FFFFFF',
# Gap between borders of screen and text -- Gap between borders of screen and text
# same thing as passing -x at command line -- same thing as passing -x at command line
gap_x 0 gap_x = 0,
gap_y 0 gap_y = 0,
temperature_unit celsius temperature_unit = 'celsius',
TEXT };
conky.text = [[
# cpu # cpu
${color2}${alignc}${font DotMatrix:size=10}${time %a} ${font DotMatrix:size=11}${time %d} ${font DotMatrix:size=10}${time %b} ${color2}${alignc}${font DotMatrix:size=10}${time %a} ${font DotMatrix:size=11}${time %d} ${font DotMatrix:size=10}${time %b}
${color2}${alignc}${font DotMatrix:size=12}${time %H:%M} ${font DotMatrix:size=10}${time %S}${font} ${color2}${alignc}${font DotMatrix:size=12}${time %H:%M} ${font DotMatrix:size=10}${time %S}${font}
@ -161,3 +164,4 @@ ${color1}${fs_bar 5,100 /nfs/tmp}
# #
${color2}Batt ${alignr}${battery_short} ${color2}Batt ${alignr}${battery_short}
${color1}${battery_bar 5,100} ${color1}${battery_bar 5,100}
]];