asahi-wayland-configs

my configurations for my asahilinux alpine system
Log | Files | Refs

conky.conf (2312B)


      1 -- Conky Lua API: https://conky.cc/lua
      2 -- Configuration settings: https://conky.cc/config_settings
      3 conky.config = {
      4     alignment = 'top_left',
      5     background = false, -- whether to bg the project
      6     border_width = 1,
      7     cpu_avg_samples = 2,
      8     default_color = 'white',
      9     default_outline_color = 'white',
     10     default_shade_color = 'white',
     11     draw_borders = false,
     12     draw_graph_borders = true,
     13     draw_outline = false,
     14     draw_shades = false,
     15     extra_newline = false,
     16     font = 'Fira Mono Bold:size=24',
     17     gap_x = 60,
     18     gap_y = 60,
     19     minimum_height = 5,
     20     minimum_width = 5,
     21     net_avg_samples = 2,
     22     no_buffers = true,
     23     out_to_console = false,
     24     out_to_ncurses = false,
     25     out_to_stderr = false,
     26     out_to_wayland = true,
     27     out_to_x = false,
     28     own_window = true,
     29     own_window_class = 'Conky',
     30     own_window_type = 'normal',
     31     own_window_hints = 'undecorated,sticky,below,skip_taskbar,skip_pager',
     32     show_graph_range = false,
     33     show_graph_scale = false,
     34     stippled_borders = 0,
     35     update_interval = 1.0,
     36     uppercase = false,
     37     use_spacer = 'none',
     38     use_xft = true,
     39 }
     40 
     41 -- ${color grey}Frequency (in MHz):$color $freq
     42 -- ${color grey}Frequency (in GHz):$color $freq_g
     43 -- Variables: https://conky.cc/variables
     44 conky.text = [[
     45 ${font Fira Sans:weight=ExtraBold:size=215}\
     46 ${voffset -250}
     47 ${color white}${time %I:%M}
     48 ${font Fira Mono:weight=Bold:size=24}${voffset -250}\
     49 ${color grey}Info:$color ${scroll 32 $sysname $kernel $machine}
     50 $hr
     51 ${color grey}Uptime:$color $uptime
     52 ${color grey}RAM Usage:$color $mem/$memmax - $memperc% ${membar 4}
     53 ${color grey}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 4}
     54 ${color grey}CPU Usage:$color $cpu% ${cpubar 4}
     55 ${color grey}Processes:$color $processes  ${color grey}Running:$color $running_processes
     56 $hr
     57 ${color grey}File systems:
     58  / $color${fs_used /}/${fs_size /} ${fs_bar 6 /}
     59 ${color grey}Networking:
     60 Up:$color ${upspeed} ${color grey} - Down:$color ${downspeed}
     61 $hr
     62 ${color grey}Name              PID     CPU%   MEM%
     63 ${color lightgrey} ${top name 1} ${top pid 1} ${top cpu 1} ${top mem 1}
     64 ${color lightgrey} ${top name 2} ${top pid 2} ${top cpu 2} ${top mem 2}
     65 ${color lightgrey} ${top name 3} ${top pid 3} ${top cpu 3} ${top mem 3}
     66 ${color lightgrey} ${top name 4} ${top pid 4} ${top cpu 4} ${top mem 4}
     67 ]]