Advertisement
Guest User

fastfetch config

a guest
May 4th, 2025
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.13 KB | None | 0 0
  1. {
  2. "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
  3. "logo": {
  4. "type": "builtin",
  5. "height": 15,
  6. "width": 30,
  7. "padding": {
  8. "top": 5,
  9. "left": 3
  10. }
  11. },
  12. "modules": [
  13. "break",
  14. {
  15. "type": "custom",
  16. "format": "\u001b[90m┌──────────────────────Hardware──────────────────────┐"
  17. },
  18. {
  19. "type": "host",
  20. "key": " PC",
  21. "keyColor": "green"
  22. },
  23. {
  24. "type": "cpu",
  25. "key": "│ ├  ",
  26. "keyColor": "green"
  27. },
  28. {
  29. "type": "gpu",
  30. "key": "│ ├ 󰡁 ",
  31. "keyColor": "green"
  32. },
  33. {
  34. "type": "memory",
  35. "key": "│ ├ 󰾆 ",
  36. "keyColor": "green"
  37. },
  38. {
  39. "type": "disk",
  40. "key": "└ └  ",
  41. "keyColor": "green"
  42. },
  43. {
  44. "type": "custom",
  45. "format": "\u001b[90m└────────────────────────────────────────────────────┘"
  46. },
  47. "break",
  48. {
  49. "type": "custom",
  50. "format": "\u001b[90m┌──────────────────────Software──────────────────────┐"
  51. },
  52. {
  53. "type": "os",
  54. "key": "󰣇 OS",
  55. "keyColor": "yellow"
  56. },
  57. {
  58. "type": "kernel",
  59. "key": "│ ├  ",
  60. "keyColor": "yellow"
  61. },
  62. {
  63. "type": "bios",
  64. "key": "│ ├  ",
  65. "keyColor": "yellow"
  66. },
  67. {
  68. "type": "packages",
  69. "key": "│ ├ 󰏖 ",
  70. "keyColor": "yellow"
  71. },
  72. {
  73. "type": "shell",
  74. "key": "└ └  ",
  75. "keyColor": "yellow"
  76. },
  77. "break",
  78. {
  79. "type": "de",
  80. "key": "󰨇 DE",
  81. "keyColor": "blue"
  82. },
  83. {
  84. "type": "lm",
  85. "key": "│ ├ 󰍂 ",
  86. "keyColor": "blue"
  87. },
  88. {
  89. "type": "wm",
  90. "key": "│ ├  ",
  91. "keyColor": "blue"
  92. },
  93. {
  94. "type": "wmtheme",
  95. "key": "│ ├ 󰉼 ",
  96. "keyColor": "blue"
  97. },
  98. {
  99. "type": "terminal",
  100. "key": "└ └  ",
  101. "keyColor": "blue"
  102. },
  103. {
  104. "type": "custom",
  105. "format": "\u001b[90m└────────────────────────────────────────────────────┘"
  106. },
  107. "break",
  108. {
  109. "type": "custom",
  110. "format": "\u001b[90m┌──────────────────────Uptime / Age──────────────────┐"
  111. },
  112. {
  113.  
  114. "type": "datetime",
  115. "key": "󰃭 DT",
  116. "keyColor": "magenta"
  117. },
  118. {
  119. "type": "command",
  120. "key": "│ ├  Age",
  121. "keyColor": "magenta",
  122. "text": "birth_install=$(stat -c %W /); current=$(date +%s); time_progression=$((current - birth_install)); days_difference=$((time_progression / 86400)); echo $days_difference days"
  123. },
  124. {
  125. "type": "uptime",
  126. "key": "└ └  Uptime",
  127. "keyColor": "magenta"
  128. },
  129. {
  130. "type": "custom",
  131. "format": "\u001b[90m└────────────────────────────────────────────────────┘"
  132. },
  133. "break",
  134. ]
  135. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement