Advertisement
ItsYaSeen

fastfetch config

Jun 13th, 2025
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.39 KB | Source Code | 0 0
  1. {
  2. "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
  3. "logo": {
  4. "source": "",
  5. "type": "auto",
  6. "height": 20,
  7. "width": 43,
  8. "padding": {
  9. "top": 2,
  10. "left": 0,
  11. }
  12. },
  13. "modules": [
  14. "break",
  15. {
  16. "type": "custom",
  17. "format": "\u001b[90m┌────────────────────────<Hardware/>─────────────────────────┐"
  18. },
  19. {
  20. "type": "host",
  21. "key": " PC",
  22. "keyColor": "green"
  23. },
  24. {
  25. "type": "cpu",
  26. "key": "│ ├ CPU",
  27. "showPeCoreCount": true,
  28. "keyColor": "green"
  29. },
  30. {
  31. "type": "gpu",
  32. "key": "│ ├󰍛 GPU",
  33. "keyColor": "green"
  34. },
  35. {
  36. "type": "gpu",
  37. "key": "│ ├󰍛 GPU",
  38. "format": "{3}",
  39. "keyColor": "green"
  40. },
  41. {
  42. "type": "display",
  43. "key": "│ ├󰹑 DISPLAY",
  44. "keyColor": "green"
  45. },
  46. {
  47. "type": "memory",
  48. "key": "│ ├󰍛 MEMORY",
  49. "keyColor": "green"
  50. },
  51. {
  52. "type": "swap",
  53. "key": "│ ├󰓡 SWAP",
  54. "keyColor": "green"
  55. },
  56. {
  57. "type": "custom",
  58. "format": "\u001b[90m└────────────────────────────────────────────────────────────┘"
  59. },
  60. "break",
  61. {
  62. "type": "custom",
  63. "format": "\u001b[90m┌───────────────────────────<OS/>────────────────────────────┐"
  64. },
  65. {
  66. "type": "os",
  67. "key": "│ OS",
  68. "keyColor": "yellow"
  69. },
  70. {
  71. "type": "title",
  72. "key": "│ ├ USER/HOST",
  73. "format": "{user-name}@{host-name}",
  74. "keyColor": "yellow"
  75. },
  76. {
  77. "type": "kernel",
  78. "key": "│ ├ KERNEL",
  79. "keyColor": "yellow"
  80. },
  81. {
  82. "type": "packages",
  83. "key": "│ ├󰏖 PACKAGES",
  84. "keyColor": "yellow"
  85. },
  86. {
  87. "type": "terminal",
  88. "key": "│ ├ TERMINAL",
  89. "keyColor": "yellow"
  90. },
  91. {
  92. "type": "terminalfont",
  93. "key": "│ ├󰛖 TERMINAL FONT",
  94. "keyColor": "yellow"
  95. },
  96. {
  97. "type": "custom",
  98. "format": "\u001b[90m└────────────────────────────────────────────────────────────┘"
  99. },
  100. "break",
  101. {
  102. "type": "custom",
  103. "format": "\u001b[90m┌───────────────────<Desktop Environment/>───────────────────┐"
  104. },
  105. {
  106. "type": "de",
  107. "key": " DE",
  108. "keyColor": "blue"
  109. },
  110. {
  111. "type": "lm",
  112. "key": "│ ├ DISPLAY MANAGER",
  113. "keyColor": "blue"
  114. },
  115. {
  116. "type": "wm",
  117. "key": "│ ├ WINDOW MANAGER",
  118. "keyColor": "blue"
  119. },
  120. {
  121. "type": "wmtheme",
  122. "key": "│ ├ THEME",
  123. "keyColor": "blue"
  124. },
  125. {
  126. "type": "icons",
  127. "key": "│ ├󰉼 ICONS",
  128. "keyColor": "blue"
  129. },
  130. {
  131. "type": "font",
  132. "key": "│ ├󰛖 SYSTEM FONT",
  133. "format": "{3}",
  134. "keyColor": "blue"
  135. },
  136. {
  137. "type": "custom",
  138. "format": "\u001b[90m└────────────────────────────────────────────────────────────┘"
  139. },
  140. "break",
  141. {
  142. "type": "custom",
  143. "format": "\u001b[90m┌───────────────────────<Age.Uptime/>────────────────────────┐"
  144. },
  145. {
  146. "type": "command",
  147. "key": " OS Age ",
  148. "keyColor": "magenta",
  149. "text": "birth_install=$(stat -c %W /); current=$(date +%s); time_progression=$((current - birth_install)); days_difference=$((time_progression / 86400)); echo $days_difference days"
  150. },
  151. {
  152. "type": "uptime",
  153. "key": " Uptime ",
  154. "keyColor": "magenta"
  155. },
  156. {
  157. "type": "custom",
  158. "format": "\u001b[90m└────────────────────────────────────────────────────────────┘"
  159. },
  160. "break",
  161. ]
  162. }
  163.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement