Fix toggle-touchpad device reference
@@ -36,6 +36,10 @@ for script in "$OMARCHY_BIN"/omarchy-*; do
|
|||||||
-e 's/ omarchy-/ archypr-/g' \
|
-e 's/ omarchy-/ archypr-/g' \
|
||||||
-e 's/omarchy-[a-z]/archypr-/g' \
|
-e 's/omarchy-[a-z]/archypr-/g' \
|
||||||
-e 's/# omarchy:/# archypr:/g' \
|
-e 's/# omarchy:/# archypr:/g' \
|
||||||
|
-e 's/omarchy-hw-touchpad/archypr-hw-touchpad/g' \
|
||||||
|
-e 's/omarchy-swayosd-client/archypr-swayosd-client/g' \
|
||||||
|
-e 's/omarchy-w-/archypr-w-/g' \
|
||||||
|
-e 's/omarchy-m-/archypr-m-/g' \
|
||||||
"$script" > "$tmp_file"
|
"$script" > "$tmp_file"
|
||||||
|
|
||||||
# Move the transformed file to target
|
# Move the transformed file to target
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
STATE_CONF="$HOME/.local/state/omarchy/toggles/hypr/touchpad-disabled.conf"
|
STATE_CONF="$HOME/.local/state/omarchy/toggles/hypr/touchpad-disabled.conf"
|
||||||
|
|
||||||
device="$(archypr-w-touchpad)"
|
device="$(archypr-hw-touchpad)"
|
||||||
|
|
||||||
if [[ -z $device ]]; then
|
if [[ -z $device ]]; then
|
||||||
echo "No touchpad device found" >&2
|
echo "No touchpad device found" >&2
|
||||||
|
|||||||
|
After Width: | Height: | Size: 652 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
@@ -0,0 +1,84 @@
|
|||||||
|
# https://github.com/catppuccin/btop/blob/main/themes/catppuccin_latte.theme
|
||||||
|
# Main background, empty for terminal default, need to be empty if you want transparent background
|
||||||
|
theme[main_bg]="#eff1f5"
|
||||||
|
|
||||||
|
# Main text color
|
||||||
|
theme[main_fg]="#4c4f69"
|
||||||
|
|
||||||
|
# Title color for boxes
|
||||||
|
theme[title]="#4c4f69"
|
||||||
|
|
||||||
|
# Highlight color for keyboard shortcuts
|
||||||
|
theme[hi_fg]="#1e66f5"
|
||||||
|
|
||||||
|
# Background color of selected item in processes box
|
||||||
|
theme[selected_bg]="#bcc0cc"
|
||||||
|
|
||||||
|
# Foreground color of selected item in processes box
|
||||||
|
theme[selected_fg]="#1e66f5"
|
||||||
|
|
||||||
|
# Color of inactive/disabled text
|
||||||
|
theme[inactive_fg]="#8c8fa1"
|
||||||
|
|
||||||
|
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
|
||||||
|
theme[graph_text]="#dc8a78"
|
||||||
|
|
||||||
|
# Background color of the percentage meters
|
||||||
|
theme[meter_bg]="#bcc0cc"
|
||||||
|
|
||||||
|
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||||
|
theme[proc_misc]="#dc8a78"
|
||||||
|
|
||||||
|
# CPU, Memory, Network, Proc box outline colors
|
||||||
|
theme[cpu_box]="#8839ef" #Mauve
|
||||||
|
theme[mem_box]="#40a02b" #Green
|
||||||
|
theme[net_box]="#e64553" #Maroon
|
||||||
|
theme[proc_box]="#1e66f5" #Blue
|
||||||
|
|
||||||
|
# Box divider line and small boxes line color
|
||||||
|
theme[div_line]="#9ca0b0"
|
||||||
|
|
||||||
|
# Temperature graph color (Green -> Yellow -> Red)
|
||||||
|
theme[temp_start]="#40a02b"
|
||||||
|
theme[temp_mid]="#df8e1d"
|
||||||
|
theme[temp_end]="#d20f39"
|
||||||
|
|
||||||
|
# CPU graph colors (Teal -> Lavender)
|
||||||
|
theme[cpu_start]="#179299"
|
||||||
|
theme[cpu_mid]="#209fb5"
|
||||||
|
theme[cpu_end]="#7287fd"
|
||||||
|
|
||||||
|
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
|
||||||
|
theme[free_start]="#8839ef"
|
||||||
|
theme[free_mid]="#7287fd"
|
||||||
|
theme[free_end]="#1e66f5"
|
||||||
|
|
||||||
|
# Mem/Disk cached meter (Sapphire -> Lavender)
|
||||||
|
theme[cached_start]="#209fb5"
|
||||||
|
theme[cached_mid]="#1e66f5"
|
||||||
|
theme[cached_end]="#7287fd"
|
||||||
|
|
||||||
|
# Mem/Disk available meter (Peach -> Red)
|
||||||
|
theme[available_start]="#fe640b"
|
||||||
|
theme[available_mid]="#e64553"
|
||||||
|
theme[available_end]="#d20f39"
|
||||||
|
|
||||||
|
# Mem/Disk used meter (Green -> Sky)
|
||||||
|
theme[used_start]="#40a02b"
|
||||||
|
theme[used_mid]="#179299"
|
||||||
|
theme[used_end]="#04a5e5"
|
||||||
|
|
||||||
|
# Download graph colors (Peach -> Red)
|
||||||
|
theme[download_start]="#fe640b"
|
||||||
|
theme[download_mid]="#e64553"
|
||||||
|
theme[download_end]="#d20f39"
|
||||||
|
|
||||||
|
# Upload graph colors (Green -> Sky)
|
||||||
|
theme[upload_start]="#40a02b"
|
||||||
|
theme[upload_mid]="#179299"
|
||||||
|
theme[upload_end]="#04a5e5"
|
||||||
|
|
||||||
|
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
|
||||||
|
theme[process_start]="#209fb5"
|
||||||
|
theme[process_mid]="#7287fd"
|
||||||
|
theme[process_end]="#8839ef"
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
accent = "#1e66f5"
|
||||||
|
cursor = "#dc8a78"
|
||||||
|
foreground = "#4c4f69"
|
||||||
|
background = "#eff1f5"
|
||||||
|
selection_foreground = "#eff1f5"
|
||||||
|
selection_background = "#dc8a78"
|
||||||
|
|
||||||
|
color0 = "#bcc0cc"
|
||||||
|
color1 = "#d20f39"
|
||||||
|
color2 = "#40a02b"
|
||||||
|
color3 = "#df8e1d"
|
||||||
|
color4 = "#1e66f5"
|
||||||
|
color5 = "#ea76cb"
|
||||||
|
color6 = "#179299"
|
||||||
|
color7 = "#5c5f77"
|
||||||
|
color8 = "#acb0be"
|
||||||
|
color9 = "#d20f39"
|
||||||
|
color10 = "#40a02b"
|
||||||
|
color11 = "#df8e1d"
|
||||||
|
color12 = "#1e66f5"
|
||||||
|
color13 = "#ea76cb"
|
||||||
|
color14 = "#179299"
|
||||||
|
color15 = "#6c6f85"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Yaru-blue
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
# This will set "prefer-light" and use "Adwaita" as the theme
|
||||||
@@ -0,0 +1,16 @@
|
|||||||
|
return {
|
||||||
|
{
|
||||||
|
"catppuccin/nvim",
|
||||||
|
name = "catppuccin",
|
||||||
|
priority = 1000,
|
||||||
|
opts = {
|
||||||
|
flavour = "latte",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"LazyVim/LazyVim",
|
||||||
|
opts = {
|
||||||
|
colorscheme = "catppuccin-latte",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 308 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "Catppuccin Latte",
|
||||||
|
"extension": "catppuccin.catppuccin-vsc"
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 353 KiB |
|
After Width: | Height: | Size: 1.3 MiB |
|
After Width: | Height: | Size: 254 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
@@ -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]="#c6d0f5"
|
||||||
|
|
||||||
|
# Title color for boxes
|
||||||
|
theme[title]="#c6d0f5"
|
||||||
|
|
||||||
|
# Highlight color for keyboard shortcuts
|
||||||
|
theme[hi_fg]="#8caaee"
|
||||||
|
|
||||||
|
# Background color of selected item in processes box
|
||||||
|
theme[selected_bg]="#51576d"
|
||||||
|
|
||||||
|
# Foreground color of selected item in processes box
|
||||||
|
theme[selected_fg]="#8caaee"
|
||||||
|
|
||||||
|
# Color of inactive/disabled text
|
||||||
|
theme[inactive_fg]="#838ba7"
|
||||||
|
|
||||||
|
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
|
||||||
|
theme[graph_text]="#f2d5cf"
|
||||||
|
|
||||||
|
# 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]="#f2d5cf"
|
||||||
|
|
||||||
|
# CPU, Memory, Network, Proc box outline colors
|
||||||
|
theme[cpu_box]="#ca9ee6" #Mauve
|
||||||
|
theme[mem_box]="#a6d189" #Green
|
||||||
|
theme[net_box]="#ea999c" #Maroon
|
||||||
|
theme[proc_box]="#8caaee" #Blue
|
||||||
|
|
||||||
|
# Box divider line and small boxes line color
|
||||||
|
theme[div_line]="#737994"
|
||||||
|
|
||||||
|
# Temperature graph color (Green -> Yellow -> Red)
|
||||||
|
theme[temp_start]="#a6d189"
|
||||||
|
theme[temp_mid]="#e5c890"
|
||||||
|
theme[temp_end]="#e78284"
|
||||||
|
|
||||||
|
# CPU graph colors (Teal -> Lavender)
|
||||||
|
theme[cpu_start]="#81c8be"
|
||||||
|
theme[cpu_mid]="#85c1dc"
|
||||||
|
theme[cpu_end]="#babbf1"
|
||||||
|
|
||||||
|
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
|
||||||
|
theme[free_start]="#ca9ee6"
|
||||||
|
theme[free_mid]="#babbf1"
|
||||||
|
theme[free_end]="#8caaee"
|
||||||
|
|
||||||
|
# Mem/Disk cached meter (Sapphire -> Lavender)
|
||||||
|
theme[cached_start]="#85c1dc"
|
||||||
|
theme[cached_mid]="#8caaee"
|
||||||
|
theme[cached_end]="#babbf1"
|
||||||
|
|
||||||
|
# Mem/Disk available meter (Peach -> Red)
|
||||||
|
theme[available_start]="#ef9f76"
|
||||||
|
theme[available_mid]="#ea999c"
|
||||||
|
theme[available_end]="#e78284"
|
||||||
|
|
||||||
|
# Mem/Disk used meter (Green -> Sky)
|
||||||
|
theme[used_start]="#a6d189"
|
||||||
|
theme[used_mid]="#81c8be"
|
||||||
|
theme[used_end]="#99d1db"
|
||||||
|
|
||||||
|
# Download graph colors (Peach -> Red)
|
||||||
|
theme[download_start]="#ef9f76"
|
||||||
|
theme[download_mid]="#ea999c"
|
||||||
|
theme[download_end]="#e78284"
|
||||||
|
|
||||||
|
# Upload graph colors (Green -> Sky)
|
||||||
|
theme[upload_start]="#a6d189"
|
||||||
|
theme[upload_mid]="#81c8be"
|
||||||
|
theme[upload_end]="#99d1db"
|
||||||
|
|
||||||
|
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
|
||||||
|
theme[process_start]="#85c1dc"
|
||||||
|
theme[process_mid]="#babbf1"
|
||||||
|
theme[process_end]="#ca9ee6"
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
accent = "#89b4fa"
|
||||||
|
cursor = "#f5e0dc"
|
||||||
|
foreground = "#cdd6f4"
|
||||||
|
background = "#1e1e2e"
|
||||||
|
selection_foreground = "#1e1e2e"
|
||||||
|
selection_background = "#f5e0dc"
|
||||||
|
|
||||||
|
color0 = "#45475a"
|
||||||
|
color1 = "#f38ba8"
|
||||||
|
color2 = "#a6e3a1"
|
||||||
|
color3 = "#f9e2af"
|
||||||
|
color4 = "#89b4fa"
|
||||||
|
color5 = "#f5c2e7"
|
||||||
|
color6 = "#94e2d5"
|
||||||
|
color7 = "#bac2de"
|
||||||
|
color8 = "#585b70"
|
||||||
|
color9 = "#f38ba8"
|
||||||
|
color10 = "#a6e3a1"
|
||||||
|
color11 = "#f9e2af"
|
||||||
|
color12 = "#89b4fa"
|
||||||
|
color13 = "#f5c2e7"
|
||||||
|
color14 = "#94e2d5"
|
||||||
|
color15 = "#a6adc8"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Yaru-purple
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
return {
|
||||||
|
{
|
||||||
|
"catppuccin/nvim",
|
||||||
|
name = "catppuccin",
|
||||||
|
priority = 1000,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"LazyVim/LazyVim",
|
||||||
|
opts = {
|
||||||
|
colorscheme = "catppuccin-nvim",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 273 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "Catppuccin Mocha",
|
||||||
|
"extension": "catppuccin.catppuccin-vsc"
|
||||||
|
}
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
@define-color foreground #cdd6f4;
|
||||||
|
@define-color background #181824;
|
||||||
|
After Width: | Height: | Size: 1.4 MiB |
|
After Width: | Height: | Size: 3.8 MiB |
|
After Width: | Height: | Size: 4.4 KiB |
@@ -0,0 +1,70 @@
|
|||||||
|
# Main background, empty for terminal default, need to be empty if you want transparent background
|
||||||
|
theme[main_bg]="#060B1E"
|
||||||
|
|
||||||
|
# Main text color
|
||||||
|
theme[main_fg]="#ffcead"
|
||||||
|
|
||||||
|
# Title color for boxes
|
||||||
|
theme[title]="#c89dc1"
|
||||||
|
|
||||||
|
# Highlight color for keyboard shortcuts
|
||||||
|
theme[hi_fg]="#a3bfd1"
|
||||||
|
|
||||||
|
# Background color of selected item in processes box
|
||||||
|
theme[selected_bg]="#6d7db6"
|
||||||
|
|
||||||
|
# Foreground color of selected item in processes box
|
||||||
|
theme[selected_fg]="#ffcead"
|
||||||
|
|
||||||
|
# Color of inactive/disabled text
|
||||||
|
theme[inactive_fg]="#6d7db6"
|
||||||
|
|
||||||
|
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||||
|
theme[proc_misc]="#c89dc1"
|
||||||
|
|
||||||
|
# Box outline and divider line color
|
||||||
|
theme[cpu_box]="#92a593"
|
||||||
|
theme[mem_box]="#92a593"
|
||||||
|
theme[net_box]="#92a593"
|
||||||
|
theme[proc_box]="#92a593"
|
||||||
|
theme[div_line]="#6d7db6"
|
||||||
|
|
||||||
|
# Gradient for all meters and graphs
|
||||||
|
theme[temp_start]="#a3bfd1"
|
||||||
|
theme[temp_mid]="#7d82d9"
|
||||||
|
theme[temp_end]="#92a593"
|
||||||
|
|
||||||
|
|
||||||
|
theme[cpu_start]="#a3bfd1"
|
||||||
|
theme[cpu_mid]="#7d82d9"
|
||||||
|
theme[cpu_end]="#92a593"
|
||||||
|
|
||||||
|
|
||||||
|
theme[free_start]="#7d82d9"
|
||||||
|
theme[free_mid]="#E9BB4F"
|
||||||
|
theme[free_end]="#E9BB4F"
|
||||||
|
|
||||||
|
|
||||||
|
theme[cached_start]="#E9BB4F"
|
||||||
|
theme[cached_mid]="#E9BB4F"
|
||||||
|
theme[cached_end]="#E9BB4F"
|
||||||
|
|
||||||
|
|
||||||
|
theme[available_start]="#a3bfd1"
|
||||||
|
theme[available_mid]="#a3bfd1"
|
||||||
|
theme[available_end]="#a3bfd1"
|
||||||
|
|
||||||
|
|
||||||
|
theme[used_start]="#92a593"
|
||||||
|
theme[used_mid]="#92a593"
|
||||||
|
theme[used_end]="#92a593"
|
||||||
|
|
||||||
|
|
||||||
|
theme[download_start]="#E9BB4F"
|
||||||
|
theme[download_mid]="#a3bfd1"
|
||||||
|
theme[download_end]="#7d82d9"
|
||||||
|
|
||||||
|
|
||||||
|
theme[upload_start]="#E9BB4F"
|
||||||
|
theme[upload_mid]="#a3bfd1"
|
||||||
|
theme[upload_end]="#7d82d9"
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
accent = "#7d82d9"
|
||||||
|
cursor = "#ffcead"
|
||||||
|
foreground = "#ffcead"
|
||||||
|
background = "#060B1E"
|
||||||
|
selection_foreground = "#060B1E"
|
||||||
|
selection_background = "#ffcead"
|
||||||
|
|
||||||
|
color0 = "#3C486D"
|
||||||
|
color1 = "#ED5B5A"
|
||||||
|
color2 = "#92a593"
|
||||||
|
color3 = "#E9BB4F"
|
||||||
|
color4 = "#7d82d9"
|
||||||
|
color5 = "#c89dc1"
|
||||||
|
color6 = "#a3bfd1"
|
||||||
|
color7 = "#F99957"
|
||||||
|
color8 = "#6d7db6"
|
||||||
|
color9 = "#faaaa9"
|
||||||
|
color10 = "#c4cfc4"
|
||||||
|
color11 = "#f7dc9c"
|
||||||
|
color12 = "#c2c4f0"
|
||||||
|
color13 = "#ead7e7"
|
||||||
|
color14 = "#dfeaf0"
|
||||||
|
color15 = "#ffcead"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Yaru-blue
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
return {
|
||||||
|
{
|
||||||
|
"bjarneo/ethereal.nvim",
|
||||||
|
priority = 1000,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"LazyVim/LazyVim",
|
||||||
|
opts = {
|
||||||
|
colorscheme = "ethereal",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 374 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "Ethereal",
|
||||||
|
"extension": "Bjarne.ethereal-omarchy"
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 315 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
@@ -0,0 +1,92 @@
|
|||||||
|
# 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]="#2d353b"
|
||||||
|
|
||||||
|
# Main text color
|
||||||
|
theme[main_fg]="#d3c6aa"
|
||||||
|
|
||||||
|
# Title color for boxes
|
||||||
|
theme[title]="#d3c6aa"
|
||||||
|
|
||||||
|
# Highlight color for keyboard shortcuts
|
||||||
|
theme[hi_fg]="#e67e80"
|
||||||
|
|
||||||
|
# Background color of selected items
|
||||||
|
theme[selected_bg]="#3d484d"
|
||||||
|
|
||||||
|
# Foreground color of selected items
|
||||||
|
theme[selected_fg]="#dbbc7f"
|
||||||
|
|
||||||
|
# Color of inactive/disabled text
|
||||||
|
theme[inactive_fg]="#2d353b"
|
||||||
|
|
||||||
|
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
|
||||||
|
theme[graph_text]="#d3c6aa"
|
||||||
|
|
||||||
|
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||||
|
theme[proc_misc]="#a7c080"
|
||||||
|
|
||||||
|
# Cpu box outline color
|
||||||
|
theme[cpu_box]="#3d484d"
|
||||||
|
|
||||||
|
# Memory/disks box outline color
|
||||||
|
theme[mem_box]="#3d484d"
|
||||||
|
|
||||||
|
# Net up/down box outline color
|
||||||
|
theme[net_box]="#3d484d"
|
||||||
|
|
||||||
|
# Processes box outline color
|
||||||
|
theme[proc_box]="#3d484d"
|
||||||
|
|
||||||
|
# Box divider line and small boxes line color
|
||||||
|
theme[div_line]="#3d484d"
|
||||||
|
|
||||||
|
# Temperature graph colors
|
||||||
|
theme[temp_start]="#a7c080"
|
||||||
|
theme[temp_mid]="#dbbc7f"
|
||||||
|
theme[temp_end]="#f85552"
|
||||||
|
|
||||||
|
# CPU graph colors
|
||||||
|
theme[cpu_start]="#a7c080"
|
||||||
|
theme[cpu_mid]="#dbbc7f"
|
||||||
|
theme[cpu_end]="#f85552"
|
||||||
|
|
||||||
|
# Mem/Disk free meter
|
||||||
|
theme[free_start]="#f85552"
|
||||||
|
theme[free_mid]="#dbbc7f"
|
||||||
|
theme[free_end]="#a7c080"
|
||||||
|
|
||||||
|
# Mem/Disk cached meter
|
||||||
|
theme[cached_start]="#7fbbb3"
|
||||||
|
theme[cached_mid]="#83c092"
|
||||||
|
theme[cached_end]="#a7c080"
|
||||||
|
|
||||||
|
# Mem/Disk available meter
|
||||||
|
theme[available_start]="#f85552"
|
||||||
|
theme[available_mid]="#dbbc7f"
|
||||||
|
theme[available_end]="#a7c080"
|
||||||
|
|
||||||
|
# Mem/Disk used meter
|
||||||
|
theme[used_start]="#a7c080"
|
||||||
|
theme[used_mid]="#dbbc7f"
|
||||||
|
theme[used_end]="#f85552"
|
||||||
|
|
||||||
|
# Download graph colors
|
||||||
|
theme[download_start]="#a7c080"
|
||||||
|
theme[download_mid]="#83c092"
|
||||||
|
theme[download_end]="#7fbbb3"
|
||||||
|
|
||||||
|
# Upload graph colors
|
||||||
|
theme[upload_start]="#dbbc7f"
|
||||||
|
theme[upload_mid]="#e69875"
|
||||||
|
theme[upload_end]="#e67e80"
|
||||||
|
|
||||||
|
# Process box color gradient for threads, mem and cpu usage
|
||||||
|
theme[process_start]="#a7c080"
|
||||||
|
theme[process_mid]="#e67e80"
|
||||||
|
theme[process_end]="#f85552"
|
||||||
|
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
accent = "#7fbbb3"
|
||||||
|
cursor = "#d3c6aa"
|
||||||
|
foreground = "#d3c6aa"
|
||||||
|
background = "#2d353b"
|
||||||
|
selection_foreground = "#2d353b"
|
||||||
|
selection_background = "#d3c6aa"
|
||||||
|
|
||||||
|
color0 = "#475258"
|
||||||
|
color1 = "#e67e80"
|
||||||
|
color2 = "#a7c080"
|
||||||
|
color3 = "#dbbc7f"
|
||||||
|
color4 = "#7fbbb3"
|
||||||
|
color5 = "#d699b6"
|
||||||
|
color6 = "#83c092"
|
||||||
|
color7 = "#d3c6aa"
|
||||||
|
color8 = "#475258"
|
||||||
|
color9 = "#e67e80"
|
||||||
|
color10 = "#a7c080"
|
||||||
|
color11 = "#dbbc7f"
|
||||||
|
color12 = "#7fbbb3"
|
||||||
|
color13 = "#d699b6"
|
||||||
|
color14 = "#83c092"
|
||||||
|
color15 = "#d3c6aa"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Yaru-sage
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
return {
|
||||||
|
{ "neanias/everforest-nvim" },
|
||||||
|
{
|
||||||
|
"LazyVim/LazyVim",
|
||||||
|
opts = {
|
||||||
|
colorscheme = "everforest",
|
||||||
|
background = "soft",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 365 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "Everforest Dark",
|
||||||
|
"extension": "reesew.everforest-theme"
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 287 KiB |
|
After Width: | Height: | Size: 41 KiB |
@@ -0,0 +1,78 @@
|
|||||||
|
# Main bg
|
||||||
|
theme[main_bg]="#FFFCF0"
|
||||||
|
|
||||||
|
# Main text color
|
||||||
|
theme[main_fg]="#100F0F"
|
||||||
|
|
||||||
|
# Title color for boxes
|
||||||
|
theme[title]="#100F0F"
|
||||||
|
|
||||||
|
# Highlight color for keyboard shortcuts
|
||||||
|
theme[hi_fg]="#205EA6"
|
||||||
|
|
||||||
|
# Background color of selected item in processes box
|
||||||
|
theme[selected_bg]="#414868"
|
||||||
|
|
||||||
|
# Foreground color of selected item in processes box
|
||||||
|
theme[selected_fg]="#100F0F"
|
||||||
|
|
||||||
|
# Color of inactive/disabled text
|
||||||
|
theme[inactive_fg]="#6F6E69"
|
||||||
|
|
||||||
|
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||||
|
theme[proc_misc]="#205EA6"
|
||||||
|
|
||||||
|
# Cpu box outline color
|
||||||
|
theme[cpu_box]="#6F6E69"
|
||||||
|
|
||||||
|
# Memory/disks box outline color
|
||||||
|
theme[mem_box]="#6F6E69"
|
||||||
|
|
||||||
|
# Net up/down box outline color
|
||||||
|
theme[net_box]="#6F6E69"
|
||||||
|
|
||||||
|
# Processes box outline color
|
||||||
|
theme[proc_box]="#6F6E69"
|
||||||
|
|
||||||
|
# Box divider line and small boxes line color
|
||||||
|
theme[div_line]="#6F6E69"
|
||||||
|
|
||||||
|
# Temperature graph colors
|
||||||
|
theme[temp_start]="#66800B"
|
||||||
|
theme[temp_mid]="#BC5215"
|
||||||
|
theme[temp_end]="#AF3029"
|
||||||
|
|
||||||
|
# CPU graph colors
|
||||||
|
theme[cpu_start]="#66800B"
|
||||||
|
theme[cpu_mid]="#BC5215"
|
||||||
|
theme[cpu_end]="#AF3029"
|
||||||
|
|
||||||
|
# Mem/Disk free meter
|
||||||
|
theme[free_start]="#66800B"
|
||||||
|
theme[free_mid]="#BC5215"
|
||||||
|
theme[free_end]="#AF3029"
|
||||||
|
|
||||||
|
# Mem/Disk cached meter
|
||||||
|
theme[cached_start]="#66800B"
|
||||||
|
theme[cached_mid]="#BC5215"
|
||||||
|
theme[cached_end]="#AF3029"
|
||||||
|
|
||||||
|
# Mem/Disk available meter
|
||||||
|
theme[available_start]="#66800B"
|
||||||
|
theme[available_mid]="#BC5215"
|
||||||
|
theme[available_end]="#AF3029"
|
||||||
|
|
||||||
|
# Mem/Disk used meter
|
||||||
|
theme[used_start]="#66800B"
|
||||||
|
theme[used_mid]="#BC5215"
|
||||||
|
theme[used_end]="#AF3029"
|
||||||
|
|
||||||
|
# Download graph colors
|
||||||
|
theme[download_start]="#66800B"
|
||||||
|
theme[download_mid]="#BC5215"
|
||||||
|
theme[download_end]="#AF3029"
|
||||||
|
|
||||||
|
# Upload graph colors
|
||||||
|
theme[upload_start]="#66800B"
|
||||||
|
theme[upload_mid]="#BC5215"
|
||||||
|
theme[upload_end]="#AF3029"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
242,240,229
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
accent = "#205EA6"
|
||||||
|
cursor = "#100F0F"
|
||||||
|
foreground = "#100F0F"
|
||||||
|
background = "#FFFCF0"
|
||||||
|
selection_foreground = "#100F0F"
|
||||||
|
selection_background = "#CECDC3"
|
||||||
|
|
||||||
|
color0 = "#DAD8CE"
|
||||||
|
color1 = "#D14D41"
|
||||||
|
color2 = "#879A39"
|
||||||
|
color3 = "#D0A215"
|
||||||
|
color4 = "#205EA6"
|
||||||
|
color5 = "#CE5D97"
|
||||||
|
color6 = "#3AA99F"
|
||||||
|
color7 = "#B7B5AC"
|
||||||
|
color8 = "#100F0F"
|
||||||
|
color9 = "#D14D41"
|
||||||
|
color10 = "#879A39"
|
||||||
|
color11 = "#D0A215"
|
||||||
|
color12 = "#4385BE"
|
||||||
|
color13 = "#CE5D97"
|
||||||
|
color14 = "#3AA99F"
|
||||||
|
color15 = "#CECDC3"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Yaru-blue
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
# This will set "prefer-light" and use "Adwaita" as the theme
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
return {
|
||||||
|
{
|
||||||
|
"kepano/flexoki-neovim",
|
||||||
|
priority = 1000,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"LazyVim/LazyVim",
|
||||||
|
opts = {
|
||||||
|
colorscheme = "flexoki-light",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 204 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "flexoki-light",
|
||||||
|
"extension": "shadesOfBuntu.flexoki-light"
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 3.9 MiB |
|
After Width: | Height: | Size: 1.2 MiB |
|
After Width: | Height: | Size: 1.8 MiB |
|
After Width: | Height: | Size: 1.8 MiB |
|
After Width: | Height: | Size: 434 KiB |
|
After Width: | Height: | Size: 4.4 KiB |
@@ -0,0 +1,92 @@
|
|||||||
|
#Bashtop gruvbox (https://github.com/morhetz/gruvbox) theme
|
||||||
|
#by BachoSeven
|
||||||
|
|
||||||
|
# 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]="#282828"
|
||||||
|
|
||||||
|
# Main text color
|
||||||
|
theme[main_fg]="#a89984"
|
||||||
|
|
||||||
|
# Title color for boxes
|
||||||
|
theme[title]="#ebdbb2"
|
||||||
|
|
||||||
|
# Highlight color for keyboard shortcuts
|
||||||
|
theme[hi_fg]="#d79921"
|
||||||
|
|
||||||
|
# Background color of selected items
|
||||||
|
theme[selected_bg]="#282828"
|
||||||
|
|
||||||
|
# Foreground color of selected items
|
||||||
|
theme[selected_fg]="#fabd2f"
|
||||||
|
|
||||||
|
# Color of inactive/disabled text
|
||||||
|
theme[inactive_fg]="#282828"
|
||||||
|
|
||||||
|
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
|
||||||
|
theme[graph_text]="#585858"
|
||||||
|
|
||||||
|
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||||
|
theme[proc_misc]="#98971a"
|
||||||
|
|
||||||
|
# Cpu box outline color
|
||||||
|
theme[cpu_box]="#a89984"
|
||||||
|
|
||||||
|
# Memory/disks box outline color
|
||||||
|
theme[mem_box]="#a89984"
|
||||||
|
|
||||||
|
# Net up/down box outline color
|
||||||
|
theme[net_box]="#a89984"
|
||||||
|
|
||||||
|
# Processes box outline color
|
||||||
|
theme[proc_box]="#a89984"
|
||||||
|
|
||||||
|
# Box divider line and small boxes line color
|
||||||
|
theme[div_line]="#a89984"
|
||||||
|
|
||||||
|
# Temperature graph colors
|
||||||
|
theme[temp_start]="#458588"
|
||||||
|
theme[temp_mid]="#d3869b"
|
||||||
|
theme[temp_end]="#fb4394"
|
||||||
|
|
||||||
|
# CPU graph colors
|
||||||
|
theme[cpu_start]="#b8bb26"
|
||||||
|
theme[cpu_mid]="#d79921"
|
||||||
|
theme[cpu_end]="#fb4934"
|
||||||
|
|
||||||
|
# Mem/Disk free meter
|
||||||
|
theme[free_start]="#4e5900"
|
||||||
|
theme[free_mid]=""
|
||||||
|
theme[free_end]="#98971a"
|
||||||
|
|
||||||
|
# Mem/Disk cached meter
|
||||||
|
theme[cached_start]="#458588"
|
||||||
|
theme[cached_mid]=""
|
||||||
|
theme[cached_end]="#83a598"
|
||||||
|
|
||||||
|
# Mem/Disk available meter
|
||||||
|
theme[available_start]="#d79921"
|
||||||
|
theme[available_mid]=""
|
||||||
|
theme[available_end]="#fabd2f"
|
||||||
|
|
||||||
|
# Mem/Disk used meter
|
||||||
|
theme[used_start]="#cc241d"
|
||||||
|
theme[used_mid]=""
|
||||||
|
theme[used_end]="#fb4934"
|
||||||
|
|
||||||
|
# Download graph colors
|
||||||
|
theme[download_start]="#3d4070"
|
||||||
|
theme[download_mid]="#6c71c4"
|
||||||
|
theme[download_end]="#a3a8f7"
|
||||||
|
|
||||||
|
# Upload graph colors
|
||||||
|
theme[upload_start]="#701c45"
|
||||||
|
theme[upload_mid]="#b16286"
|
||||||
|
theme[upload_end]="#d3869b"
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
accent = "#7daea3"
|
||||||
|
cursor = "#bdae93"
|
||||||
|
foreground = "#d4be98"
|
||||||
|
background = "#282828"
|
||||||
|
selection_foreground = "#ebdbb2"
|
||||||
|
selection_background = "#d65d0e"
|
||||||
|
|
||||||
|
color0 = "#3c3836"
|
||||||
|
color1 = "#ea6962"
|
||||||
|
color2 = "#a9b665"
|
||||||
|
color3 = "#d8a657"
|
||||||
|
color4 = "#7daea3"
|
||||||
|
color5 = "#d3869b"
|
||||||
|
color6 = "#89b482"
|
||||||
|
color7 = "#d4be98"
|
||||||
|
color8 = "#3c3836"
|
||||||
|
color9 = "#ea6962"
|
||||||
|
color10 = "#a9b665"
|
||||||
|
color11 = "#d8a657"
|
||||||
|
color12 = "#7daea3"
|
||||||
|
color13 = "#d3869b"
|
||||||
|
color14 = "#89b482"
|
||||||
|
color15 = "#d4be98"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Yaru-olive
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
return {
|
||||||
|
{ "ellisonleao/gruvbox.nvim" },
|
||||||
|
{
|
||||||
|
"LazyVim/LazyVim",
|
||||||
|
opts = {
|
||||||
|
colorscheme = "gruvbox",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 561 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "Gruvbox Dark Medium",
|
||||||
|
"extension": "jdinhlife.gruvbox"
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 2.2 MiB |
|
After Width: | Height: | Size: 1.8 MiB |
|
After Width: | Height: | Size: 4.4 KiB |
@@ -0,0 +1,70 @@
|
|||||||
|
# Main background, empty for terminal default, need to be empty if you want transparent background
|
||||||
|
theme[main_bg]="#0B0C16"
|
||||||
|
|
||||||
|
# Main text color
|
||||||
|
theme[main_fg]="#ddf7ff"
|
||||||
|
|
||||||
|
# Title color for boxes
|
||||||
|
theme[title]="#86a7df"
|
||||||
|
|
||||||
|
# Highlight color for keyboard shortcuts
|
||||||
|
theme[hi_fg]="#7cf8f7"
|
||||||
|
|
||||||
|
# Background color of selected item in processes box
|
||||||
|
theme[selected_bg]="#6a6e95"
|
||||||
|
|
||||||
|
# Foreground color of selected item in processes box
|
||||||
|
theme[selected_fg]="#ddf7ff"
|
||||||
|
|
||||||
|
# Color of inactive/disabled text
|
||||||
|
theme[inactive_fg]="#6a6e95"
|
||||||
|
|
||||||
|
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||||
|
theme[proc_misc]="#86a7df"
|
||||||
|
|
||||||
|
# Box outline and divider line color
|
||||||
|
theme[cpu_box]="#4fe88f"
|
||||||
|
theme[mem_box]="#4fe88f"
|
||||||
|
theme[net_box]="#4fe88f"
|
||||||
|
theme[proc_box]="#4fe88f"
|
||||||
|
theme[div_line]="#6a6e95"
|
||||||
|
|
||||||
|
# Gradient for all meters and graphs
|
||||||
|
theme[temp_start]="#7cf8f7"
|
||||||
|
theme[temp_mid]="#829dd4"
|
||||||
|
theme[temp_end]="#4fe88f"
|
||||||
|
|
||||||
|
|
||||||
|
theme[cpu_start]="#7cf8f7"
|
||||||
|
theme[cpu_mid]="#829dd4"
|
||||||
|
theme[cpu_end]="#4fe88f"
|
||||||
|
|
||||||
|
|
||||||
|
theme[free_start]="#829dd4"
|
||||||
|
theme[free_mid]="#50f7d4"
|
||||||
|
theme[free_end]="#50f7d4"
|
||||||
|
|
||||||
|
|
||||||
|
theme[cached_start]="#50f7d4"
|
||||||
|
theme[cached_mid]="#50f7d4"
|
||||||
|
theme[cached_end]="#50f7d4"
|
||||||
|
|
||||||
|
|
||||||
|
theme[available_start]="#7cf8f7"
|
||||||
|
theme[available_mid]="#7cf8f7"
|
||||||
|
theme[available_end]="#7cf8f7"
|
||||||
|
|
||||||
|
|
||||||
|
theme[used_start]="#4fe88f"
|
||||||
|
theme[used_mid]="#4fe88f"
|
||||||
|
theme[used_end]="#4fe88f"
|
||||||
|
|
||||||
|
|
||||||
|
theme[download_start]="#50f7d4"
|
||||||
|
theme[download_mid]="#7cf8f7"
|
||||||
|
theme[download_end]="#829dd4"
|
||||||
|
|
||||||
|
|
||||||
|
theme[upload_start]="#50f7d4"
|
||||||
|
theme[upload_mid]="#7cf8f7"
|
||||||
|
theme[upload_end]="#829dd4"
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
accent = "#82FB9C"
|
||||||
|
cursor = "#ddf7ff"
|
||||||
|
foreground = "#ddf7ff"
|
||||||
|
background = "#0B0C16"
|
||||||
|
selection_foreground = "#0B0C16"
|
||||||
|
selection_background = "#ddf7ff"
|
||||||
|
|
||||||
|
color0 = "#3E4058"
|
||||||
|
color1 = "#50f872"
|
||||||
|
color2 = "#4fe88f"
|
||||||
|
color3 = "#50f7d4"
|
||||||
|
color4 = "#829dd4"
|
||||||
|
color5 = "#86a7df"
|
||||||
|
color6 = "#7cf8f7"
|
||||||
|
color7 = "#85E1FB"
|
||||||
|
color8 = "#6a6e95"
|
||||||
|
color9 = "#85ff9d"
|
||||||
|
color10 = "#9cf7c2"
|
||||||
|
color11 = "#a4ffec"
|
||||||
|
color12 = "#c4d2ed"
|
||||||
|
color13 = "#cddbf4"
|
||||||
|
color14 = "#d1fffe"
|
||||||
|
color15 = "#ddf7ff"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Yaru-blue
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
return {
|
||||||
|
{
|
||||||
|
"bjarneo/hackerman.nvim",
|
||||||
|
dependencies = { "bjarneo/aether.nvim" }, -- Ensure aether is loaded first
|
||||||
|
priority = 1000,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"LazyVim/LazyVim",
|
||||||
|
opts = {
|
||||||
|
colorscheme = "hackerman",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 321 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "Hackerman",
|
||||||
|
"extension": "Bjarne.hackerman-omarchy"
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 1.5 MiB |
|
After Width: | Height: | Size: 4.4 KiB |
@@ -0,0 +1,86 @@
|
|||||||
|
# Bashtop Kanagawa-wave (https://github.com/rebelot/kanagawa.nvim) theme
|
||||||
|
# By: philikarus
|
||||||
|
|
||||||
|
# Main bg
|
||||||
|
theme[main_bg]="#1f1f28"
|
||||||
|
|
||||||
|
# Main text color
|
||||||
|
theme[main_fg]="#dcd7ba"
|
||||||
|
|
||||||
|
# Title color for boxes
|
||||||
|
theme[title]="#dcd7ba"
|
||||||
|
|
||||||
|
# Highlight color for keyboard shortcuts
|
||||||
|
theme[hi_fg]="#C34043"
|
||||||
|
|
||||||
|
# Background color of selected item in processes box
|
||||||
|
theme[selected_bg]="#223249"
|
||||||
|
|
||||||
|
# Foreground color of selected item in processes box
|
||||||
|
theme[selected_fg]="#dca561"
|
||||||
|
|
||||||
|
# Color of inactive/disabled text
|
||||||
|
theme[inactive_fg]="#727169"
|
||||||
|
|
||||||
|
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||||
|
theme[proc_misc]="#7aa89f"
|
||||||
|
|
||||||
|
# Cpu box outline color
|
||||||
|
theme[cpu_box]="#727169"
|
||||||
|
|
||||||
|
# Memory/disks box outline color
|
||||||
|
theme[mem_box]="#727169"
|
||||||
|
|
||||||
|
# Net up/down box outline color
|
||||||
|
theme[net_box]="#727169"
|
||||||
|
|
||||||
|
# Processes box outline color
|
||||||
|
theme[proc_box]="#727169"
|
||||||
|
|
||||||
|
# Box divider line and small boxes line color
|
||||||
|
theme[div_line]="#727169"
|
||||||
|
|
||||||
|
# Temperature graph colors
|
||||||
|
theme[temp_start]="#98BB6C"
|
||||||
|
theme[temp_mid]="#DCA561"
|
||||||
|
theme[temp_end]="#E82424"
|
||||||
|
|
||||||
|
# CPU graph colors
|
||||||
|
theme[cpu_start]="#98BB6C"
|
||||||
|
theme[cpu_mid]="#DCA561"
|
||||||
|
theme[cpu_end]="#E82424"
|
||||||
|
|
||||||
|
# Mem/Disk free meter
|
||||||
|
theme[free_start]="#E82424"
|
||||||
|
theme[free_mid]="#C34043"
|
||||||
|
theme[free_end]="#FF5D62"
|
||||||
|
|
||||||
|
# Mem/Disk cached meter
|
||||||
|
theme[cached_start]="#C0A36E"
|
||||||
|
theme[cached_mid]="#DCA561"
|
||||||
|
theme[cached_end]="#FF9E3B"
|
||||||
|
|
||||||
|
# Mem/Disk available meter
|
||||||
|
theme[available_start]="#938AA9"
|
||||||
|
theme[available_mid]="#957FBB"
|
||||||
|
theme[available_end]="#9CABCA"
|
||||||
|
|
||||||
|
# Mem/Disk used meter
|
||||||
|
theme[used_start]="#658594"
|
||||||
|
theme[used_mid]="#7E9CDB"
|
||||||
|
theme[used_end]="#7FB4CA"
|
||||||
|
|
||||||
|
# Download graph colors
|
||||||
|
theme[download_start]="#7E9CDB"
|
||||||
|
theme[download_mid]="#938AA9"
|
||||||
|
theme[download_end]="#957FBB"
|
||||||
|
|
||||||
|
# Upload graph colors
|
||||||
|
theme[upload_start]="#DCA561"
|
||||||
|
theme[upload_mid]="#E6C384"
|
||||||
|
theme[upload_end]="#E82424"
|
||||||
|
|
||||||
|
# Process box color gradient for threads, mem and cpu usage
|
||||||
|
theme[process_start]="#98BB6C"
|
||||||
|
theme[process_mid]="#DCA561"
|
||||||
|
theme[process_end]="#C34043"
|
||||||
@@ -0,0 +1,23 @@
|
|||||||
|
accent = "#7e9cd8"
|
||||||
|
cursor = "#c8c093"
|
||||||
|
foreground = "#dcd7ba"
|
||||||
|
background = "#1f1f28"
|
||||||
|
selection_foreground = "#c8c093"
|
||||||
|
selection_background = "#2d4f67"
|
||||||
|
|
||||||
|
color0 = "#090618"
|
||||||
|
color1 = "#c34043"
|
||||||
|
color2 = "#76946a"
|
||||||
|
color3 = "#c0a36e"
|
||||||
|
color4 = "#7e9cd8"
|
||||||
|
color5 = "#957fb8"
|
||||||
|
color6 = "#6a9589"
|
||||||
|
color7 = "#c8c093"
|
||||||
|
color8 = "#727169"
|
||||||
|
color9 = "#e82424"
|
||||||
|
color10 = "#98bb6c"
|
||||||
|
color11 = "#e6c384"
|
||||||
|
color12 = "#7fb4ca"
|
||||||
|
color13 = "#938aa9"
|
||||||
|
color14 = "#7aa89f"
|
||||||
|
color15 = "#dcd7ba"
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
$activeBorderColor = rgb(dcd7ba)
|
||||||
|
|
||||||
|
general {
|
||||||
|
col.active_border = $activeBorderColor
|
||||||
|
}
|
||||||
|
|
||||||
|
group {
|
||||||
|
col.border_active = $activeBorderColor
|
||||||
|
}
|
||||||
|
|
||||||
|
# Kanagawa backdrop is too strong for detault opacity
|
||||||
|
windowrule = opacity 0.98 0.95, match:tag terminal
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
Yaru-blue
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
return {
|
||||||
|
{ "rebelot/kanagawa.nvim" },
|
||||||
|
{
|
||||||
|
"LazyVim/LazyVim",
|
||||||
|
opts = {
|
||||||
|
colorscheme = "kanagawa",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 22 KiB |
|
After Width: | Height: | Size: 435 KiB |
|
After Width: | Height: | Size: 2.5 KiB |
@@ -0,0 +1,4 @@
|
|||||||
|
{
|
||||||
|
"name": "Kanagawa",
|
||||||
|
"extension": "qufiwefefwoyn.kanagawa"
|
||||||
|
}
|
||||||
|
After Width: | Height: | Size: 96 KiB |
|
After Width: | Height: | Size: 2.0 MiB |
|
After Width: | Height: | Size: 4.4 KiB |
@@ -0,0 +1,64 @@
|
|||||||
|
# Main background, empty for terminal default, need to be empty if you want transparent background
|
||||||
|
theme[main_bg]=""
|
||||||
|
theme_background=false
|
||||||
|
|
||||||
|
# Main text color
|
||||||
|
theme[main_fg]="#c7d2de"
|
||||||
|
|
||||||
|
# Title color for boxes
|
||||||
|
theme[title]="#9fcfe9"
|
||||||
|
|
||||||
|
# Highlight color for keyboard shortcuts
|
||||||
|
theme[hi_fg]="#b5deef"
|
||||||
|
|
||||||
|
# Background color of selected item in processes box
|
||||||
|
theme[selected_bg]="#355066"
|
||||||
|
|
||||||
|
# Foreground color of selected item in processes box
|
||||||
|
theme[selected_fg]="#c7d2de"
|
||||||
|
|
||||||
|
# Color of inactive/disabled text
|
||||||
|
theme[inactive_fg]="#355066"
|
||||||
|
|
||||||
|
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||||
|
theme[proc_misc]="#9fcfe9"
|
||||||
|
|
||||||
|
# Box outline and divider line color
|
||||||
|
theme[cpu_box]="#79abd2"
|
||||||
|
theme[mem_box]="#79abd2"
|
||||||
|
theme[net_box]="#79abd2"
|
||||||
|
theme[proc_box]="#79abd2"
|
||||||
|
theme[div_line]="#355066"
|
||||||
|
|
||||||
|
# Gradient for all meters and graphs
|
||||||
|
theme[temp_start]="#b5deef"
|
||||||
|
theme[temp_mid]="#92c7e7"
|
||||||
|
theme[temp_end]="#79abd2"
|
||||||
|
|
||||||
|
theme[cpu_start]="#b5deef"
|
||||||
|
theme[cpu_mid]="#92c7e7"
|
||||||
|
theme[cpu_end]="#79abd2"
|
||||||
|
|
||||||
|
theme[free_start]="#92c7e7"
|
||||||
|
theme[free_mid]="#86b6da"
|
||||||
|
theme[free_end]="#86b6da"
|
||||||
|
|
||||||
|
theme[cached_start]="#86b6da"
|
||||||
|
theme[cached_mid]="#86b6da"
|
||||||
|
theme[cached_end]="#86b6da"
|
||||||
|
|
||||||
|
theme[available_start]="#b5deef"
|
||||||
|
theme[available_mid]="#b5deef"
|
||||||
|
theme[available_end]="#b5deef"
|
||||||
|
|
||||||
|
theme[used_start]="#79abd2"
|
||||||
|
theme[used_mid]="#79abd2"
|
||||||
|
theme[used_end]="#79abd2"
|
||||||
|
|
||||||
|
theme[download_start]="#86b6da"
|
||||||
|
theme[download_mid]="#b5deef"
|
||||||
|
theme[download_end]="#92c7e7"
|
||||||
|
|
||||||
|
theme[upload_start]="#86b6da"
|
||||||
|
theme[upload_mid]="#b5deef"
|
||||||
|
theme[upload_end]="#92c7e7"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
14,31,41
|
||||||