Advertisement
Guest User

Untitled

a guest
Mar 15th, 2022
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.21 KB | None | 0 0
  1. conky.config = {
  2.     alignment = 'top_right',
  3.     background = false,
  4.     border_width = 1,
  5.     cpu_avg_samples = 2,
  6.     default_color = 'white',
  7.     default_outline_color = 'white',
  8.     default_shade_color = 'white',
  9.     double_buffer = true,
  10.     draw_borders = false,
  11.     draw_graph_borders = true,
  12.     draw_outline = false,
  13.     draw_shades = false,
  14.     extra_newline = false,
  15.     font = 'Ubuntu Mono:size=13',
  16.     gap_x = 60,
  17.     gap_y = 60,
  18.     minimum_height = 5,
  19.     minimum_width = 5,
  20.     net_avg_samples = 2,
  21.     no_buffers = true,
  22.     out_to_console = false,
  23.     out_to_ncurses = false,
  24.     out_to_stderr = false,
  25.     out_to_x = true,
  26.     own_window = true,
  27.     own_window_class = 'Conky',
  28.     own_window_type = 'override',
  29.     show_graph_range = false,
  30.     show_graph_scale = false,
  31.     stippled_borders = 0,
  32.     update_interval = 1.0,
  33.     uppercase = false,
  34.     use_spacer = 'none',
  35.     use_xft = true,
  36. }
  37.  
  38. conky.text = [[
  39. ${color #2eb398}CALENDAR ${hr 2}$color
  40. ${execpi 60 DJS=`date +%_d`; cal | sed s/"\(^\|[^0-9]\)$DJS"'\b'/'\1${color #2eb398}'"$DJS"'$color'/}
  41.  
  42. ${color #2eb398}Weather ${hr 2}$color
  43. ${font Noto Color Emoji:size=16}${alignc}${execi 600 curl "wttr.in/?format=1"}$font
  44. ]]
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement