Guest User

conky trasnperant

a guest
Dec 31st, 2025
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. conky.config = {
  2. -- Window Settings
  3. own_window = true,
  4. own_window_type = 'desktop', -- Use 'normal' or 'override' if 'desktop' fails
  5. own_window_transparent = true, -- Enables standard transparency
  6. own_window_argb_visual = true, -- Enables "real" transparency
  7. own_window_argb_value = 0, -- 0 is fully transparent, 255 is opaque
  8. own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
  9.  
  10. -- Position & Appearance
  11. alignment = 'top_left',
  12. gap_x = 20,
  13. gap_y = 5,
  14. minimum_width = 200,
  15. double_buffer = true, -- Eliminates flickering
  16. use_xft = true,
  17. font = 'Sans:size=10',
  18. default_color = 'grey',
  19. update_interval = 1.0,
  20. }
  21.  
  22. conky.text = [[
  23. ${color grey}System:$color $sysname $kernel on $machine
  24. ${color grey}Uptime:$color $uptime
  25. ${hr}
  26. ${color grey}CPU Usage:$color $cpu% ${cpubar 4}
  27. ${color grey}RAM Usage:$color $mem/$memmax - $memperc% ${membar 4}
  28. ${color grey}Swap Usage:$color $swap/$swapmax - $swapperc% ${swapbar 4}
  29. ${hr}
  30. ${color grey}File systems:
  31. / $color${fs_used /}/${fs_size /} ${fs_bar 6 /}
  32. ${hr}
  33. ${color grey}Networking:
  34. Up:$color ${upspeed wlan0} ${color grey} - Down:$color ${downspeed wlan0}
  35. ]]
Advertisement
Add Comment
Please, Sign In to add comment