From 791aacb90fd2efe508124e12c4dc035d3dce8ae7 Mon Sep 17 00:00:00 2001 From: zloy_linux Date: Mon, 1 Dec 2025 13:22:41 +0700 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB=D0=B5?= =?UTF-8?q?=D0=BD=D0=B0=20=D1=82=D0=B5=D0=BC=D0=B0=20=D0=BE=D1=84=D0=BE?= =?UTF-8?q?=D1=80=D0=BC=D0=BB=D0=B5=D0=BD=D0=B8=D1=8F=20Orange?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/btop/btop.conf | 7 ++- config/btop/themes/orange.theme | 83 +++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+), 2 deletions(-) create mode 100644 config/btop/themes/orange.theme diff --git a/config/btop/btop.conf b/config/btop/btop.conf index 894dd34..3e07a02 100644 --- a/config/btop/btop.conf +++ b/config/btop/btop.conf @@ -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. diff --git a/config/btop/themes/orange.theme b/config/btop/themes/orange.theme new file mode 100644 index 0000000..fe81e80 --- /dev/null +++ b/config/btop/themes/orange.theme @@ -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"