Advertisement
image28

Conky Now Playing VLC/Steam

Jul 6th, 2019
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | None | 0 0
  1. conky.config = {
  2. -- conky configuration
  3. -- edited by darcon@gmail.com
  4. -- edited by image28@slingshot.co.nz
  5.  
  6. -- Use Xft?
  7. use_xft = true,
  8.  
  9. -- Xft font when Xft is enabled
  10. font = 'Terminus:size=8',
  11.  
  12. -- Text alpha when using Xft
  13. xftalpha = 0.8,
  14.  
  15. -- Create own window instead of using desktop (required in nautilus)
  16. own_window = true,
  17. own_window_argb_visual = true,
  18. own_window_transparent = true,
  19. own_window_argb_value = 82,
  20. own_window_type = 'desktop',
  21. own_window_class = 'override',
  22.  
  23. -- Use double buffering (reduces flicker, may not work for everyone)
  24. double_buffer = true,
  25.  
  26. -- Draw shades?
  27. draw_shades = true,
  28.  
  29. -- Draw outlines?
  30. draw_outline = false,
  31.  
  32. -- Draw borders around text
  33. draw_borders = false,
  34.  
  35. -- Stippled borders?
  36. stippled_borders = 8,
  37.  
  38. -- border margins
  39. -- border_margin = '4',
  40.  
  41. -- border width
  42. border_width = 1,
  43.  
  44. -- Default colors and also border colors
  45. default_color = 'white',
  46. default_shade_color = 'black',
  47. default_outline_color = 'white',
  48.  
  49. -- Subtract file system buffers from used memory?
  50. no_buffers = true,
  51.  
  52. -- set to yes if you want all text to be in uppercase
  53. uppercase = true,
  54.  
  55. -- Force UTF8? note that UTF8 support required XFT
  56. override_utf8_locale = false,
  57.  
  58. ---------------------------------------------------------
  59. -- Unique per window bellow --
  60. ---------------------------------------------------------
  61.  
  62. -- Set Window Name
  63. own_window_title = 'conky-vlc',
  64.  
  65. -- Update interval in seconds
  66. update_interval = 10.0,
  67.  
  68. -- Minimum size of text area
  69. minimum_width = 500, minimum_height = 5,
  70. maximum_width = 800,
  71.  
  72. -- Text alignment, some other possible values are commented
  73. alignment = 'top_middle',
  74. --alignment top_right
  75. --alignment bottom_left
  76. --alignment bottom_right
  77.  
  78. -- Gap between borders of screen and text
  79. -- same thing as passing -x at command line
  80. gap_x = 1,
  81. gap_y = 50,
  82.  
  83. };
  84.  
  85. conky.text = [[
  86. ${font spaceman:size=16}${color orange}NOW PLAYING ${hr 6}$color
  87. ${execi 4 /home/image/.ConkyConfig/vlc.sh}
  88. ]];
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement