diff --git a/lib/config.ps1 b/lib/config.ps1 index beb9ce0..0b0f25d 100644 --- a/lib/config.ps1 +++ b/lib/config.ps1 @@ -1,20 +1,33 @@ # ===== WINFETCH CONFIGURATION ===== +# $image = "~/winfetch.png" +# $noimage = $true + +# Add a custom info line +# function info_custom_time { +# return @{ +# title = "Time" +# content = (Get-Date) +# } +# } + # Remove the '#' from any of the lines in -# this file to **enable** their output. +# the following to **enable** their output. @( - 'None' - 'Show_Title' - 'Show_Dashes' - 'Show_OS' - 'Show_Computer' - 'Show_Uptime' - 'Show_CPU' - 'Show_GPU' - 'Show_Memory' - 'Show_Pkgs' -# 'Show_Terminal' -# 'Show_Disk' -# 'Show_Pwsh' -) -join ',' + "title" + "dashes" + "os" + "computer" + # "custom_time" # use custom info line + "uptime" + "pkgs" + "pwsh" + "terminal" + "cpu" + "gpu" + "memory" + # "disk" + "blank" + "colorbar" +)