wallust

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | Submodules | README

commit 7152097fee54eb162315391d1b2ec61a7e6b9d1b
parent e810d115fdb2e1dc0793eccab11854af91e24b62
Author: mrgrouse <mrgrouse@mrgrouse.com>
Date:   Fri, 23 Aug 2024 19:09:04 -0400

pywal.theme: migrate to wallust v3 template format

Diffstat:
Mtemplates/pywal.theme | 68++++++++++++++++++++++++++++++++++----------------------------------
1 file changed, 34 insertions(+), 34 deletions(-)

diff --git a/templates/pywal.theme b/templates/pywal.theme @@ -10,79 +10,79 @@ theme[main_bg]=empty # Main text color -theme[main_fg]="{foreground}" +theme[main_fg]="{{foreground}}" # Title color for boxes -theme[title]="{foreground}" +theme[title]="{{foreground}}" # Higlight color for keyboard shortcuts -theme[hi_fg]="{color3}" +theme[hi_fg]="{{color3}}" # Background color of selected item in processes box -theme[selected_bg]="{background}" +theme[selected_bg]="{{background}}" # Foreground color of selected item in processes box -theme[selected_fg]="{color3}" +theme[selected_fg]="{{color3}}" # Color of inactive/disabled text -theme[inactive_fg]="{color0}" +theme[inactive_fg]="{{color0}}" # Misc colors for processes box including mini cpu graphs, details memory graph and details status text -theme[proc_misc]="{background}" +theme[proc_misc]="{{background}}" # Cpu box outline color -theme[cpu_box]="{color0}" +theme[cpu_box]="{{color0}}" # Memory/disks box outline color -theme[mem_box]="{color0}" +theme[mem_box]="{{color0}}" # Net up/down box outline color -theme[net_box]="{color0}" +theme[net_box]="{{color0}}" # Processes box outline color -theme[proc_box]="{color0}" +theme[proc_box]="{{color0}}" # Box divider line and small boxes line color -theme[div_line]="{color8}" +theme[div_line]="{{color8}}" # Temperature graph colors -theme[temp_start]="{color2}" -theme[temp_mid]="{color3}" -theme[temp_end]="{color3}" +theme[temp_start]="{{color2}}" +theme[temp_mid]="{{color3}}" +theme[temp_end]="{{color3}}" # CPU graph colors -theme[cpu_start]="{color3}" -theme[cpu_end]="{color3}" +theme[cpu_start]="{{color3}}" +theme[cpu_end]="{{color3}}" # Mem/Disk free meter # End is hight start is low -theme[free_end]="{color3}" -theme[free_mid]="{color3}" -theme[free_start]="{color1}" +theme[free_end]="{{color3}}" +theme[free_mid]="{{color3}}" +theme[free_start]="{{color1}}" # Mem/Disk cached meter # End is hight start is low -theme[cached_start]="{color3}" -theme[cached_mid]="{color3}" -theme[cached_end]="{color1}" +theme[cached_start]="{{color3}}" +theme[cached_mid]="{{color3}}" +theme[cached_end]="{{color1}}" # Mem/Disk available meter # End is hight start is low -theme[available_end]="{color3}" -theme[available_mid]="{color3}" -theme[available_start]="{color1}" +theme[available_end]="{{color3}}" +theme[available_mid]="{{color3}}" +theme[available_start]="{{color1}}" # Mem/Disk used meter -theme[used_start]="{color3}" -theme[used_end]="{color3}" +theme[used_start]="{{color3}}" +theme[used_end]="{{color3}}" # Download graph colors -theme[download_start]="#{color9}" -theme[download_mid]="{color2}" -theme[download_end]="{color3}" +theme[download_start]="#{{color9}}" +theme[download_mid]="{{color2}}" +theme[download_end]="{{color3}}" # Upload graph colors -theme[upload_start]="#{color9}" -theme[upload_mid]="{color2}" -theme[upload_end]="{color3}" +theme[upload_start]="#{{color9}}" +theme[upload_mid]="{{color2}}" +theme[upload_end]="{{color3}}"