Skip to content

Instantly share code, notes, and snippets.

@Justinzobel
Created May 15, 2020 02:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Justinzobel/a61e24019c12d809ebb2ceef81f8ebee to your computer and use it in GitHub Desktop.
Save Justinzobel/a61e24019c12d809ebb2ceef81f8ebee to your computer and use it in GitHub Desktop.
App: https://github.com/aristocratos/bashtop
#Bashtop theme with nord palette (https://www.nordtheme.com)
#by Justin Zobel <justin.zobel@gmail.com>
# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255"
# example for white: "#ffffff", "#ff" or "255 255 255".
# All graphs and meters can be gradients
# For single color graphs leave "mid" and "end" variable empty.
# Use "start" and "end" variables for two color gradient
# Use "start", "mid" and "end" for three color gradient
# Main background, empty for terminal default, need to be empty if you want transparent background
theme[main_bg]="#2E3440"
# Main text color
theme[main_fg]="#E5E9F0"
# Title color for boxes
theme[title]="#"
# Higlight color for keyboard shortcuts
theme[hi_fg]="#434c5e"
# Background color of selected item in processes box
theme[selected_bg]="#4C566A"
# Foreground color of selected item in processes box
theme[selected_fg]="#ECEFF4"
# Color of inactive/disabled text
theme[inactive_fg]="#4C566A"
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
theme[proc_misc]="#367bf0"
# Cpu box outline color
theme[cpu_box]="#d8dee9"
# Memory/disks box outline color
theme[mem_box]="#d8dee9"
# Net up/down box outline color
theme[net_box]="#d8dee9"
# Processes box outline color
theme[proc_box]="#d8dee9"
# Box divider line and small boxes line color
theme[div_line]="#d8dee9"
# Temperature graph colors
theme[temp_start]="#4c566a"
theme[temp_mid]="#434c5e"
theme[temp_end]="#3b4252"
# CPU graph colors
theme[cpu_start]="#3b4252"
theme[cpu_mid]="#434c5e"
theme[cpu_end]="#4c566a"
# Mem/Disk free meter
theme[free_start]="#3b4252"
theme[free_mid]="#434c5e"
theme[free_end]="#4c566a"
# Mem/Disk cached meter
theme[cached_start]="#3b4252"
theme[cached_mid]="#434c5e"
theme[cached_end]="#4c566a"
# Mem/Disk available meter
theme[available_start]="#3b4252"
theme[available_mid]="#434c5e"
theme[available_end]="#4c566a"
# Mem/Disk used meter
theme[used_start]="#3b4252"
theme[used_mid]="#434c5e"
theme[used_end]="#4c566a"
# Download graph colors
theme[download_start]="#3b4252"
theme[download_mid]="#434c5e"
theme[download_end]="#4c566a"
# Upload graph colors
theme[upload_start]="#3b4252"
theme[upload_mid]="#434c5e"
theme[upload_end]="#4c566a"
@Justinzobel
Copy link
Author

Suggestions for alterations welcome. Very initial design.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment