Advertisement
poetician

i3 conky-statusbar 100% Transparency | Mauve Icons

Mar 10th, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.30 KB | None | 0 0
  1. --[[
  2. #=====================================================================================
  3. #
  4. # Author : Erik Dubois at http://www.erikdubois.be
  5. # License : Distributed under the terms of GNU GPL version 2 or later
  6. # Documentation English: http://erikdubois.be/category/linux/i3/
  7. #======================================================================================
  8.  
  9. #======================================================================================
  10. #
  11. # Source : c
  12. # alternative : sudo apt list --upgradable | wc -l
  13. #======================================================================================
  14.  
  15.  
  16. ]]
  17.  
  18. conky.config = {
  19. out_to_x = false,
  20. own_window = false,
  21. out_to_console = true,
  22. background = false,
  23. max_text_width = 0,
  24. update_interval = 1.0,
  25. total_run_times = 0,
  26. short_units = true,
  27. if_up_strictness = "address",
  28. use_spacer = "left",
  29. override_utf8_locale = false,
  30. cpu_avg_samples = 2
  31. }
  32.  
  33. conky.text = [[
  34. [
  35. # {
  36. # "full_text": " ArcoLinux $kernel ",
  37. # "color": "\#fdf6e3",
  38. # "background": "\#dc322f",
  39. # "separator": true,
  40. # "separator_block_width": 0
  41. # },
  42. {
  43. "full_text": "  ",
  44. "color": "\#b6b9e1",
  45. "background": "\#80000000",
  46. "separator": true,
  47. "separator_block_width": 0
  48. },
  49. {
  50. "full_text": "${cpu cpu0}%, ${execi 5 sensors|grep 'Core 0'|awk '{print $3}'} ",
  51. "color": "\#f4cd52",
  52. "background": "\#80000000",
  53. "separator": true,
  54. "separator_block_width": 0
  55. },
  56. {
  57. "full_text": " ∯ ",
  58. "color": "\#cd7f32",
  59. "background": "\#80000000",
  60. "separator": true,
  61. "separator_block_width": 0
  62. },
  63. {
  64. "full_text": "  ",
  65. "color": "\#b6b9e1",
  66. "background": "\#80000000",
  67. "separator": true,
  68. "separator_block_width": 0
  69. },
  70. {
  71. "full_text": "${mem}/${memmax} (${memperc}%) ",
  72. "color": "\#f4cd52",
  73. "background": "\#80000000",
  74. "separator": true,
  75. "separator_block_width": 0
  76. },
  77. {
  78. "full_text": " ∯ ",
  79. "color": "\#cd7f32",
  80. "background": "\#80000000",
  81. "separator": true,
  82. "separator_block_width": 0
  83. },
  84. # {
  85. # #"full_text": "  ${texeci 1800 sleep 5; aptitude search '~U' | wc -l} updates ",
  86. # "full_text": "  ${texeci 1800 sleep 5; checkupdates | wc -l} updates",
  87. # "color": "\#fdf6e3",
  88. # "background": "\#2aa198",
  89. # "separator": true,
  90. # "separator_block_width": 0
  91. # },
  92. # {
  93. # "full_text": "  up: ${upspeed enp2s0} down: ${downspeed enp2s0} ",
  94. # "color": "\#fdf6e3",
  95. # "background": "\#2aa198",
  96. # "separator": true,
  97. # "separator_block_width": 0
  98. # },
  99. # {
  100. # "full_text": " | ",
  101. # "color": "\#859900",
  102. # "background": "\#2F2F2F",
  103. # "separator": true,
  104. # "separator_block_width": 0
  105. # },
  106. {
  107. #linux mint
  108. #"full_text": " ${exec amixer get Master | grep % | awk '{print $4}' | sed 's/[^0-9\%]//g' | head -n1} ",
  109. #arch linux
  110. "full_text": " ${exec amixer get Master | grep % | awk '{print $5}' | sed 's/[^0-9\%]//g' | head -n1} ",
  111. "color": "\#f4cd52",
  112. "background": "\#80000000",
  113. "separator": true,
  114. "separator_block_width": 0
  115. },
  116. {
  117. "full_text": " ∯ ",
  118. "color": "\#cd7f32",
  119. "background": "\#80000000",
  120. "separator": true,
  121. "separator_block_width": 0
  122. },
  123. {
  124. "full_text": "  ",
  125. "color": "\#b6b9e1",
  126. "background": "\#80000000",
  127. "separator": true,
  128. "separator_block_width": 0
  129. },
  130. {
  131. "full_text": "${time %a, %d/%m/%y} ",
  132. "color": "\#f4cd52",
  133. "background": "\#80000000",
  134. "separator": true,
  135. "separator_block_width": 0
  136. },
  137. {
  138. "full_text": " ∯ ",
  139. "color": "\#cd7f32",
  140. "background": "\#80000000",
  141. "separator": true,
  142. "separator_block_width": 0
  143. },
  144. {
  145. "full_text": "  ",
  146. "color": "\#b6b9e1",
  147. "background": "\#80000000",
  148. "separator": true,
  149. "separator_block_width": 0
  150. },
  151. {
  152. "full_text": "${time %H:%M:%S} ",
  153. "color": "\#f4cd52",
  154. "background": "\#80000000",
  155. "separator": true,
  156. "separator_block_width": 0
  157. }
  158. ],
  159. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement