Advertisement
rustyelectron

conky-config

May 8th, 2021
945
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.55 KB | None | 0 0
  1. --[[
  2. Conky, a system monitor, based on torsmo
  3. ]]
  4.  
  5. conky.config = {
  6.     alignment = 'top_right',
  7.     background = false,
  8.     border_width = 8,
  9.     cpu_avg_samples = 2,
  10.     default_color = '#92B2D3',
  11.     default_outline_color = '#92B2D3',
  12.     default_shade_color = '#92B2D3',
  13.     double_buffer = true,
  14.     draw_borders = false,
  15.     draw_graph_borders = true,
  16.     draw_outline = false,
  17.     draw_shades = false,
  18.     extra_newline = false,
  19.     font = 'Roboto Mono for Powerline:size=12',
  20.     gap_x = 60,
  21.     gap_y = 60,
  22.     minimum_height = 5,
  23.     minimum_width = 5,
  24.     maximum_width = 300,
  25.     max_text_width = 30,
  26.     net_avg_samples = 2,
  27.     no_buffers = true,
  28.     out_to_console = false,
  29.     out_to_ncurses = false,
  30.     out_to_stderr = false,
  31.     out_to_x = true,
  32.     own_window = true,
  33.     own_window_class = 'Conky',
  34.     own_window_type = 'override',
  35.     show_graph_range = false,
  36.     show_graph_scale = false,
  37.     stippled_borders = 0,
  38.     update_interval = 2.0,
  39.     uppercase = false,
  40.     use_spacer = 'none',
  41.     use_xft = true,
  42.     own_window_argb_visual = true,
  43.     own_window_argb_value = 128,
  44.     color2 = f9f8f8,
  45. }
  46.  
  47. conky.text = [[
  48. $color2 Uptime:$color $uptime
  49. $color2 Frequency (in MHz):$color $freq
  50. $color2 CPU Usage:$color $cpu% ${cpubar 4}
  51. $hr
  52. $color2 Networking:
  53. $color2 - U: $color ${upspeed wlp0s20f3}
  54. $color $alignc ${upspeedgraph wlp0s20f3 30,100}
  55. $color2 - D: $color ${downspeed wlp0s20f3}
  56. $color $alignc ${downspeedgraph wlp0s20f3 30,100}
  57. $hr
  58. $color Tasks:
  59. $color2${exec tail -n +2 ~/myfiles/todo.md}
  60. ]]
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement