Created
November 30, 2018 17:35
-
-
Save bbtdev/2acbbf73776b592ee9580c01c31f69ac to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
conky.config = {-- Create own window instead of using desktop (required in nautilus) | |
own_window = true, | |
own_window_type = 'desktop', | |
own_window_transparent = true, | |
own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager', | |
-- Use double buffering (reduces flicker, may not work for everyone) | |
double_buffer = true, | |
-- fiddle with window | |
use_spacer = 'yes', | |
use_xft = true, | |
-- Update interval in seconds | |
update_interval = 1, | |
-- Minimum size of text area | |
--minimum_width = 360, minimum_height = 500, | |
--maximum_width = 360, | |
override_utf8_locale = true, | |
-- Draw shades? | |
draw_shades = false, | |
-- Text stuff | |
draw_outline = false,-- amplifies text if yes | |
draw_borders = false, | |
draw_graph_borders = false, | |
--font freesans -12 | |
font = 'Zekton:size=11', | |
uppercase = false,-- set to yes if you want all text to be in uppercase | |
-- Stippled borders? | |
stippled_borders = 3, | |
-- border margins | |
border_margin = '9', | |
-- border width | |
border_width = 10, | |
-- Default colors and also border colors, grey90 == #e5e5e5 | |
default_color = 'b2b2b2', | |
color0 = '8FBC8F', | |
color1 = 'FFA07A', | |
color2 = 'FF8C00', | |
color3 = '7FFF00', | |
color4 = '778899', | |
color5 = 'FFDEAD', | |
color6 = '00BFFF', | |
color7 = '00FFFF', | |
color8 = 'FFFF00', | |
color9 = 'B22222', | |
own_window_transparent = true, | |
own_window_argb_visual = true, | |
-- Text alignment, other possible values are commented | |
--alignment = 'top_left', | |
alignment = 'top_left', | |
--alignment bottom_left | |
--alignment bottom_right | |
-- Gap between borders of screen and text | |
gap_x = 10, | |
gap_y = 0, | |
imlib_cache_size = 0, | |
-- stuff after 'TEXT' will be formatted on screen | |
lua_load = '~/.draw-bg.lua', | |
--${lua conky_draw_bg 125 0 0 0 0 0x000000 0.2} | |
--lua_draw_hook_pre draw_bg 20 0 0 0 0 0x000000 0.2 | |
lua_draw_hook_post = 'draw_bg 20 0 0 0 0 0x000000 0.2', | |
--${lua draw_bg {20,0,0,0,0,0x000000,0.3,1,1}} | |
lua_load = '/home/manuel/scripts/allcombined1.lua', | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment