Dre9872

Config.json FastFetch

Oct 1st, 2024
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json",
  2. "modules": [
  3. "os",
  4. "kernel",
  5. "packages",
  6. "lm",
  7. "shell",
  8. "de",
  9. "wm",
  10. "terminal",
  11. "terminalfont",
  12. "memory",
  13. "board",
  14. {
  15. "type": "gpu",
  16. "temp": true
  17. },
  18. {
  19. "type": "command",
  20. "shell": "/usr/bin/bash", // Your shell path
  21. "text": "nvidia-smi | grep 'Driver Version' | awk '{print $3}'", // Command to execute
  22. "key": "GPU Driver", // Text to display
  23. "format": "nVidia: {value}"
  24. },
  25. {
  26. "type": "cpu",
  27. "temp": true
  28. },
  29. "disk"
  30. ]
  31. }
  32.  
Advertisement
Add Comment
Please, Sign In to add comment