Advertisement
Guest User

neofetch conf

a guest
Jan 2nd, 2024
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 KB | Software | 0 0
  1. # See this wiki page for more info:
  2. # https://github.com/dylanaraps/neofetch/wiki/Customizing-Info
  3. print_info() {
  4. info title
  5. info underline
  6.  
  7. info "OS" distro
  8. info "Host" model
  9. info "Kernel" kernel
  10. info "Uptime" uptime
  11. info "Packages" packages
  12. info "Shell" shell
  13. info "Resolution" resolution
  14. info "DE" de
  15. info "WM" wm
  16. info "WM Theme" wm_theme
  17. #info "Theme" theme
  18. #info "Icons" icons
  19. info "Terminal" term
  20. info "Terminal Font" term_font
  21. info "CPU" cpu
  22. info "GPU" gpu
  23. info "Memory" memory
  24.  
  25. # info "GPU Driver" gpu_driver # Linux/macOS only
  26. # info "CPU Usage" cpu_usage
  27. # info "Disk" disk
  28. # info "Battery" battery
  29. # info "Font" font
  30. # info "Song" song
  31. # [[ "$player" ]] && prin "Music Player" "$player"
  32. # info "Local IP" local_ip
  33. # info "Public IP" public_ip
  34. # info "Users" users
  35. # info "Locale" locale # This only works on glibc systems.
  36.  
  37. info cols
  38. }
  39.  
  40.  
  41. title_fqdn="off"
  42.  
  43. kernel_shorthand="on"
  44.  
  45. distro_shorthand="off"
  46.  
  47. os_arch="on"
  48.  
  49. uptime_shorthand="tiny"
  50.  
  51. memory_percent="off"
  52.  
  53. memory_unit="gib"
  54.  
  55. package_managers="on"
  56.  
  57.  
  58. # Shell
  59.  
  60. shell_path="off"
  61.  
  62. shell_version="on"
  63.  
  64. speed_type="scaling_max_freq"
  65.  
  66. speed_shorthand="off"
  67.  
  68. cpu_brand="on"
  69.  
  70. cpu_speed="on"
  71.  
  72. cpu_cores="logical"
  73.  
  74. cpu_temp="off"
  75.  
  76. gpu_brand="on"
  77.  
  78. gpu_type="all"
  79.  
  80. refresh_rate="off"
  81.  
  82. gtk_shorthand="off"
  83.  
  84. gtk2="on"
  85.  
  86. gtk3="on"
  87.  
  88. public_ip_host="http://ident.me"
  89.  
  90. public_ip_timeout=2
  91.  
  92. de_version="on"
  93.  
  94. disk_show=('/')
  95.  
  96. disk_subtitle="mount"
  97.  
  98. disk_percent="on"
  99.  
  100. music_player="auto"
  101.  
  102. song_format="%artist% - %album% - %title%"
  103.  
  104. song_shorthand="off"
  105.  
  106. mpc_args=()
  107.  
  108.  
  109. colors=(distro)
  110.  
  111. bold="on"
  112.  
  113. underline_enabled="on"
  114.  
  115. underline_char="-"
  116.  
  117. separator=":"
  118.  
  119.  
  120. # Color Blocks
  121.  
  122.  
  123.  
  124. block_range=(0 15)
  125.  
  126. color_blocks="on"
  127.  
  128. block_width=3
  129.  
  130. block_height=1
  131.  
  132. col_offset="auto"
  133.  
  134. bar_char_elapsed="-"
  135. bar_char_total="="
  136.  
  137. bar_border="on"
  138.  
  139. bar_length=15
  140.  
  141. bar_color_elapsed="distro"
  142. bar_color_total="distro"
  143.  
  144.  
  145. cpu_display="off"
  146. memory_display="off"
  147. battery_display="off"
  148. disk_display="off"
  149.  
  150. image_backend="ascii"
  151.  
  152. image_source="auto"
  153.  
  154. ascii_distro="auto"
  155.  
  156. ascii_colors=(distro)
  157.  
  158. ascii_bold="on"
  159.  
  160. image_loop="off"
  161.  
  162. thumbnail_dir="${XDG_CACHE_HOME:-${HOME}/.cache}/thumbnails/neofetch"
  163.  
  164. crop_mode="normal"
  165.  
  166. crop_offset="center"
  167.  
  168. image_size="auto"
  169.  
  170. gap=3
  171.  
  172. yoffset=0
  173. xoffset=0
  174.  
  175. background_color=
  176.  
  177. stdout="off"
  178.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement