rice

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 7deb8b163f06dcc2c27da3d71fbd4dad7c536e07
parent 346e59e114eb5ea68f9fc904648cc2ca74f1f69e
Author: mark <mjf@localhost.localdomain>
Date:   Sat,  8 Dec 2018 13:38:53 -0700

add conky

Diffstat:
Mdots/.config/i3/config | 3++-
Adots/.conkyrc | 56++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 58 insertions(+), 1 deletion(-)

diff --git a/dots/.config/i3/config b/dots/.config/i3/config @@ -186,7 +186,7 @@ font pango:Fira Mono 6 # finds out, if available) bar { status_command i3status - mode hide + mode invisible colors { background $bg statusline $yellow @@ -216,6 +216,7 @@ client.urgent $red $red $white $red $red new_window pixel 5 +exec --no-startup-id conky exec xrandr --dpi 296 exec /usr/libexec/gnome-settings-daemon exec xsetroot -solid "#1d2021" diff --git a/dots/.conkyrc b/dots/.conkyrc @@ -0,0 +1,56 @@ +conky.config = { + use_xft= true, + xftalpha= .1, + update_interval= 1, + total_run_times= 0, + + background=false, + + own_window=false, + own_window_type='desktop', + own_window_transparent=true, + own_window_hints='undecorated,below,sticky,skip_taskbar,skip_pager', + own_window_colour='000000', + own_window_argb_visual=true, + own_window_argb_value=0, + + double_buffer= true, + + minimum_width= 400, + maximum_width= 400, + + minimum_height= 10, + + draw_shades=false, + draw_outline=false, + draw_borders=false, + draw_graph_borders=false, + + default_color='FFFFFF', + default_shade_color='333333', + default_outline_color='black', + color1='EBDBB2', + color3='616161', + + alignment='top_right', + gap_x= 90, + gap_y= 0, + no_buffers= true, + text_buffer_size = 2048, + uppercase= false, + cpu_avg_samples= 4, + net_avg_samples = 2, + override_utf8_locale= true, + + font= 'Fira:style=mono:size=12' +} + +conky.text = [[ + +${color1} +${alignr}${font Ubuntu:style=Medium:pixelsize=100}${time %l:%M}${font} +${alignr}${font Ubuntu:style=Medium:pixelsize=25}${time %A %d %B %Y}${font} + +${alignr}${font Ubuntu:style=Medium:pixelsize=50}⚡${battery_percent}${font} + +]]