Добавлена тема оформления Orange

This commit is contained in:
2025-12-01 13:22:41 +07:00
parent c412917471
commit 791aacb90f
2 changed files with 88 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
#? Config file for btop v. 1.4.3
#? Config file for btop v. 1.4.5
#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes.
#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes"
@@ -115,6 +115,9 @@ cpu_bottom = False
#* Shows the system uptime in the CPU box.
show_uptime = True
#* Shows the CPU package current power consumption in watts. Requires running `make setcap` or `make setuid` or running with sudo.
show_cpu_watts = True
#* Show cpu temperature.
check_temp = True
@@ -150,7 +153,7 @@ background_update = True
custom_cpu_name = ""
#* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ".
#* Begin line with "exclude=" to change to exclude filter, otherwise defaults to "most include" filter. Example: disks_filter="exclude=/boot /home/user".
#* Only disks matching the filter will be shown. Prepend exclude= to only show disks not matching the filter. Examples: disk_filter="/boot /home/user", disks_filter="exclude=/boot /home/user"
disks_filter = ""
#* Show graphs instead of meters for memory values.

View File

@@ -0,0 +1,83 @@
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="##1c1c1f"
# Main text color
theme[main_fg]="#51576d"
# Title color for boxes
theme[title]="#ff9100"
# Highlight color for keyboard shortcuts
theme[hi_fg]="#ff9100"
# Background color of selected item in processes box
theme[selected_bg]="#ff9100"
# Foreground color of selected item in processes box
theme[selected_fg]="#000000"
# Color of inactive/disabled text
theme[inactive_fg]="#51576d"
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
theme[graph_text]="#ff9100"
# Background color of the percentage meters
theme[meter_bg]="#51576d"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#51576d"
# CPU, Memory, Network, Proc box outline colors
theme[cpu_box]="#51576d"
theme[mem_box]="#51576d"
theme[net_box]="#51576d"
theme[proc_box]="#51576d"
# Box divider line and small boxes line color
theme[div_line]="#51576d"
# Temperature graph color (Green -> Yellow -> Red)
theme[temp_start]="#51576d"
theme[temp_mid]="#ff9100"
theme[temp_end]="#ff0000"
# CPU graph colors (Teal -> Lavender)
theme[cpu_start]="#51576d"
theme[cpu_mid]="#ff9100"
theme[cpu_end]="#ff0000"
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
theme[free_start]="#51576d"
theme[free_mid]="#ff9100"
theme[free_end]="#ff0000"
# Mem/Disk cached meter (Sapphire -> Lavender)
theme[cached_start]="#51576d"
theme[cached_mid]="#ff9100"
theme[cached_end]="#ff0000"
# Mem/Disk available meter ( -> )
theme[available_start]="#51576d"
theme[available_mid]="#ff9100"
theme[available_end]="#ff0000"
# Mem/Disk used meter (-> )
theme[used_start]="#51576d"
theme[used_mid]="#ff9100"
theme[used_end]="#ff0000"
# Download graph colors (Peach -> Red)
theme[download_start]="#51576d"
theme[download_mid]="#ff9100"
theme[download_end]="#ff0000"
# Upload graph colors (Green -> Sky)
theme[upload_start]="#51576d"
theme[upload_mid]="#ff9100"
theme[upload_end]="#ff0000"
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
theme[process_start]="#51576d"
theme[process_mid]="#ff9100"
theme[process_end]="#ff0000"