-
Notifications
You must be signed in to change notification settings - Fork 92
Configuration
KiΓ«d Llaentenn edited this page Apr 5, 2019
·
12 revisions
As of version v1.0.0, WinFetch supports custom configuration. Configuration is stored at $env:XDG_CONFIG_HOME/winfetch/config (or ~/.config/winfetch/config).
To generate a default configuration that you can build on, just run:
winfetch -genconf
The default configuration looks like this:
# ===== WINFETCH CONFIGURATION ===== # Add a '#' to any of the lines in # this file to enable their output. # $show_os = $false # $show_computer = $false # $show_uptime = $false # $show_cpu = $false # $show_gpu = $false # $show_memory = $false # $show_disk = $false # $show_pkgs = $false $show_pwsh = $false $show_pkgmngr = $false
To disable an information field, just remove the # from that line:
$show_os = $false # DISABLED # $show_os = $false # ENABLED!