From 74fedf0e27b89846081bb04e14002d2fcfad16c1 Mon Sep 17 00:00:00 2001 From: Frodd Date: Sun, 31 Aug 2025 15:04:59 +0100 Subject: [PATCH] add btop config --- README.md | 1 + .../btop/themes/catppuccin_mocha.theme | 83 +++++++++++++++++++ hyprland/.config/hypr/hyprland.conf | 2 + 3 files changed, 86 insertions(+) create mode 100644 btop/.config/btop/themes/catppuccin_mocha.theme diff --git a/README.md b/README.md index 68f150d..4b5bb75 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,7 @@ This is a repo for all the various config files - fastfetch: a pc summary to run from the cli - swaync: this is a notification manager (useful for the screenshot tool `hyprshot`) - starhsip: this is for the command prompt +- btop: this is to theme the btop app ### How to use diff --git a/btop/.config/btop/themes/catppuccin_mocha.theme b/btop/.config/btop/themes/catppuccin_mocha.theme new file mode 100644 index 0000000..0809c23 --- /dev/null +++ b/btop/.config/btop/themes/catppuccin_mocha.theme @@ -0,0 +1,83 @@ +# Main background, empty for terminal default, need to be empty if you want transparent background +theme[main_bg]="#1e1e2e" + +# Main text color +theme[main_fg]="#cdd6f4" + +# Title color for boxes +theme[title]="#cdd6f4" + +# Highlight color for keyboard shortcuts +theme[hi_fg]="#89b4fa" + +# Background color of selected item in processes box +theme[selected_bg]="#45475a" + +# Foreground color of selected item in processes box +theme[selected_fg]="#89b4fa" + +# Color of inactive/disabled text +theme[inactive_fg]="#7f849c" + +# Color of text appearing on top of graphs, i.e uptime and current network graph scaling +theme[graph_text]="#f5e0dc" + +# Background color of the percentage meters +theme[meter_bg]="#45475a" + +# Misc colors for processes box including mini cpu graphs, details memory graph and details status text +theme[proc_misc]="#f5e0dc" + +# CPU, Memory, Network, Proc box outline colors +theme[cpu_box]="#cba6f7" #Mauve +theme[mem_box]="#a6e3a1" #Green +theme[net_box]="#eba0ac" #Maroon +theme[proc_box]="#89b4fa" #Blue + +# Box divider line and small boxes line color +theme[div_line]="#6c7086" + +# Temperature graph color (Green -> Yellow -> Red) +theme[temp_start]="#a6e3a1" +theme[temp_mid]="#f9e2af" +theme[temp_end]="#f38ba8" + +# CPU graph colors (Teal -> Lavender) +theme[cpu_start]="#94e2d5" +theme[cpu_mid]="#74c7ec" +theme[cpu_end]="#b4befe" + +# Mem/Disk free meter (Mauve -> Lavender -> Blue) +theme[free_start]="#cba6f7" +theme[free_mid]="#b4befe" +theme[free_end]="#89b4fa" + +# Mem/Disk cached meter (Sapphire -> Lavender) +theme[cached_start]="#74c7ec" +theme[cached_mid]="#89b4fa" +theme[cached_end]="#b4befe" + +# Mem/Disk available meter (Peach -> Red) +theme[available_start]="#fab387" +theme[available_mid]="#eba0ac" +theme[available_end]="#f38ba8" + +# Mem/Disk used meter (Green -> Sky) +theme[used_start]="#a6e3a1" +theme[used_mid]="#94e2d5" +theme[used_end]="#89dceb" + +# Download graph colors (Peach -> Red) +theme[download_start]="#fab387" +theme[download_mid]="#eba0ac" +theme[download_end]="#f38ba8" + +# Upload graph colors (Green -> Sky) +theme[upload_start]="#a6e3a1" +theme[upload_mid]="#94e2d5" +theme[upload_end]="#89dceb" + +# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve) +theme[process_start]="#74c7ec" +theme[process_mid]="#b4befe" +theme[process_end]="#cba6f7" diff --git a/hyprland/.config/hypr/hyprland.conf b/hyprland/.config/hypr/hyprland.conf index 6dab3e2..443bf25 100644 --- a/hyprland/.config/hypr/hyprland.conf +++ b/hyprland/.config/hypr/hyprland.conf @@ -37,6 +37,7 @@ $menu = wofi --show drun $browser = brave $locker = hyprlock $screenshotregion = hyprshot -m region +$top = btop $scripts = ~/.config/scripts $user = $USER @@ -244,6 +245,7 @@ bind = $mainMod, space, exec, $menu bind = $mainMod, P, pseudo, # dwindle bind = $mainMod, J, togglesplit, # dwindle bind = $mainMod, S, exec, hyprshot -m region +bind = $mainMod, T, exec, kitty -e $top bind = $SUPER_SHIFT, L, exec, $locker bind = $SUPER_SHIFT, S, exec, systemctl suspend