mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-17 14:49:58 -05:00
Initial commit
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
[colors]
|
||||
[colors.primary]
|
||||
background = "#2e3440"
|
||||
foreground = "#d8dee9"
|
||||
dim_foreground = "#a5abb6"
|
||||
|
||||
[colors.cursor]
|
||||
text = "#2e3440"
|
||||
cursor = "#d8dee9"
|
||||
|
||||
[colors.vi_mode_cursor]
|
||||
text = "#2e3440"
|
||||
cursor = "#d8dee9"
|
||||
|
||||
[colors.selection]
|
||||
text = "CellForeground"
|
||||
background = "#4c566a"
|
||||
|
||||
[colors.normal]
|
||||
black = "#3b4252"
|
||||
red = "#bf616a"
|
||||
green = "#a3be8c"
|
||||
yellow = "#ebcb8b"
|
||||
blue = "#81a1c1"
|
||||
magenta = "#b48ead"
|
||||
cyan = "#88c0d0"
|
||||
white = "#e5e9f0"
|
||||
|
||||
[colors.bright]
|
||||
black = "#4c566a"
|
||||
red = "#bf616a"
|
||||
green = "#a3be8c"
|
||||
yellow = "#ebcb8b"
|
||||
blue = "#81a1c1"
|
||||
magenta = "#b48ead"
|
||||
cyan = "#8fbcbb"
|
||||
white = "#eceff4"
|
||||
|
||||
[colors.dim]
|
||||
black = "#373e4d"
|
||||
red = "#94545d"
|
||||
green = "#809575"
|
||||
yellow = "#b29e75"
|
||||
blue = "#68809a"
|
||||
magenta = "#8c738c"
|
||||
cyan = "#6d96a5"
|
||||
white = "#aeb3bb"
|
||||
@@ -0,0 +1,2 @@
|
||||
mkdir -p "$BACKGROUNDS_DIR/nord"
|
||||
download_background_image "https://github.com/basecamp/omakub/raw/refs/heads/master/themes/nord/background.png" "nord/1-nord.png"
|
||||
@@ -0,0 +1,89 @@
|
||||
#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]="#D8DEE9"
|
||||
|
||||
# Title color for boxes
|
||||
theme[title]="#8FBCBB"
|
||||
|
||||
# Highlight color for keyboard shortcuts
|
||||
theme[hi_fg]="#5E81AC"
|
||||
|
||||
# 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]="#5E81AC"
|
||||
|
||||
# Cpu box outline color
|
||||
theme[cpu_box]="#4C566A"
|
||||
|
||||
# Memory/disks box outline color
|
||||
theme[mem_box]="#4C566A"
|
||||
|
||||
# Net up/down box outline color
|
||||
theme[net_box]="#4C566A"
|
||||
|
||||
# Processes box outline color
|
||||
theme[proc_box]="#4C566A"
|
||||
|
||||
# Box divider line and small boxes line color
|
||||
theme[div_line]="#4C566A"
|
||||
|
||||
# Temperature graph colors
|
||||
theme[temp_start]="#81A1C1"
|
||||
theme[temp_mid]="#88C0D0"
|
||||
theme[temp_end]="#ECEFF4"
|
||||
|
||||
# CPU graph colors
|
||||
theme[cpu_start]="#81A1C1"
|
||||
theme[cpu_mid]="#88C0D0"
|
||||
theme[cpu_end]="#ECEFF4"
|
||||
|
||||
# Mem/Disk free meter
|
||||
theme[free_start]="#81A1C1"
|
||||
theme[free_mid]="#88C0D0"
|
||||
theme[free_end]="#ECEFF4"
|
||||
|
||||
# Mem/Disk cached meter
|
||||
theme[cached_start]="#81A1C1"
|
||||
theme[cached_mid]="#88C0D0"
|
||||
theme[cached_end]="#ECEFF4"
|
||||
|
||||
# Mem/Disk available meter
|
||||
theme[available_start]="#81A1C1"
|
||||
theme[available_mid]="#88C0D0"
|
||||
theme[available_end]="#ECEFF4"
|
||||
|
||||
# Mem/Disk used meter
|
||||
theme[used_start]="#81A1C1"
|
||||
theme[used_mid]="#88C0D0"
|
||||
theme[used_end]="#ECEFF4"
|
||||
|
||||
# Download graph colors
|
||||
theme[download_start]="#81A1C1"
|
||||
theme[download_mid]="#88C0D0"
|
||||
theme[download_end]="#ECEFF4"
|
||||
|
||||
# Upload graph colors
|
||||
theme[upload_start]="#81A1C1"
|
||||
theme[upload_mid]="#88C0D0"
|
||||
theme[upload_end]="#ECEFF4"
|
||||
@@ -0,0 +1,4 @@
|
||||
general {
|
||||
# https://wiki.hyprland.org/Configuring/Variables/#variable-types for info about colors
|
||||
col.active_border = rgb(D8DEE9)
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
# ────────────────────────────────────────────────────────────
|
||||
# Hyprlock — Nord theme
|
||||
# ────────────────────────────────────────────────────────────
|
||||
|
||||
general {
|
||||
disable_loading_bar = true
|
||||
no_fade_in = false
|
||||
}
|
||||
|
||||
background {
|
||||
monitor =
|
||||
color = rgba(46,52,64,1.0) # #2e3440 solid color
|
||||
}
|
||||
|
||||
animations {
|
||||
enabled = false
|
||||
}
|
||||
|
||||
input-field {
|
||||
monitor =
|
||||
size = 600, 100
|
||||
position = 0, 0
|
||||
halign = center
|
||||
valign = center
|
||||
|
||||
inner_color = rgba(46,52,64,0.8) # #2e3440 with opacity
|
||||
outer_color = rgba(216,222,233,1.0) # #d8dee9
|
||||
outline_thickness = 4
|
||||
|
||||
font_family = CaskaydiaMono Nerd Font
|
||||
font_size = 32
|
||||
font_color = rgba(216,222,233,1.0)
|
||||
|
||||
placeholder_color = rgba(216,222,233,0.6)
|
||||
placeholder_text = Enter Password
|
||||
check_color = rgba(136, 192, 208, 1.0)
|
||||
fail_text = Wrong
|
||||
|
||||
rounding = 0
|
||||
shadow_passes = 0
|
||||
fade_on_empty = false
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
text-color=#d8dee9
|
||||
border-color=#D8DEE9
|
||||
background-color=#2e3440
|
||||
width=420
|
||||
height=110
|
||||
padding=10
|
||||
border-size=2
|
||||
font=Liberation Sans 11
|
||||
anchor=top-right
|
||||
default-timeout=5000
|
||||
max-icon-size=32
|
||||
|
||||
[app-name=Spotify]
|
||||
invisible=1
|
||||
@@ -0,0 +1,9 @@
|
||||
return {
|
||||
{ "EdenEast/nightfox.nvim" },
|
||||
{
|
||||
"LazyVim/LazyVim",
|
||||
opts = {
|
||||
colorscheme = "nordfox",
|
||||
},
|
||||
},
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
* {
|
||||
color: #d8dee9;
|
||||
background-color: #2e3440;
|
||||
}
|
||||
|
||||
@@ -0,0 +1,73 @@
|
||||
@define-color selected-text #88C0D0;
|
||||
@define-color text #D8DEE9;
|
||||
@define-color base #2E3440;
|
||||
|
||||
* {
|
||||
font-family: 'CaskaydiaMono Nerd Font', monospace;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
window {
|
||||
margin: 0px;
|
||||
padding: 20px;
|
||||
background-color: @base;
|
||||
opacity: 0.95;
|
||||
}
|
||||
|
||||
#inner-box {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
background-color: @base;
|
||||
}
|
||||
|
||||
#outer-box {
|
||||
margin: 0;
|
||||
padding: 20px;
|
||||
border: none;
|
||||
background-color: @base;
|
||||
}
|
||||
|
||||
#scroll {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: none;
|
||||
background-color: @base;
|
||||
}
|
||||
|
||||
#input {
|
||||
margin: 0;
|
||||
padding: 10px;
|
||||
border: none;
|
||||
background-color: @base;
|
||||
color: @text;
|
||||
}
|
||||
|
||||
#input:focus {
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#text {
|
||||
margin: 5px;
|
||||
border: none;
|
||||
color: @text;
|
||||
}
|
||||
|
||||
#entry {
|
||||
background-color: @base;
|
||||
}
|
||||
|
||||
#entry:selected {
|
||||
outline: none;
|
||||
border: none;
|
||||
}
|
||||
|
||||
#entry:selected #text {
|
||||
color: @selected-text;
|
||||
}
|
||||
|
||||
#entry image {
|
||||
-gtk-icon-transform: scale(0.7);
|
||||
}
|
||||
Reference in New Issue
Block a user