applied colors
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
wayland.windowManager.hyprland.settings = {
|
wayland.windowManager.hyprland.settings = {
|
||||||
exec-once = [
|
exec-once = [
|
||||||
"uwsm app -- waybar"
|
"uwsm app -- waybar"
|
||||||
|
"uwsm app -- hyprpaper"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,9 +2,9 @@
|
|||||||
services.hyprpaper = {
|
services.hyprpaper = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
preload = ["/home/${myConfig.nixos.username}/Pictures/Wallpapers/nord-1.png"];
|
preload = ["../../assets/Wallpapers/${myConfig.hyprland.wallpaper}"];
|
||||||
wallpaper = [
|
wallpaper = [
|
||||||
"HDMI-A-1,/home/${myConfig.nixos.username}/Pictures/Wallpapers/nord-1.png"
|
"HDMI-A-1,../../assets/Wallpapers/${myConfig.hyprland.wallpaper}"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
+14
-11
@@ -1,4 +1,4 @@
|
|||||||
{
|
{config, ...}: {
|
||||||
programs.starship = {
|
programs.starship = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings = {
|
settings = {
|
||||||
@@ -8,17 +8,20 @@
|
|||||||
$character'';
|
$character'';
|
||||||
|
|
||||||
# Palette definition (Catppuccin Mocha-inspired)
|
# Palette definition (Catppuccin Mocha-inspired)
|
||||||
palette = "pro_theme";
|
# Tell Starship to use the palette Stylix is already generating
|
||||||
palettes.pro_theme = {
|
palette = "base16";
|
||||||
surface0 = "#313244";
|
|
||||||
surface1 = "#45475a";
|
|
||||||
text = "#cdd6f4";
|
|
||||||
peach = "#fab387";
|
|
||||||
sapphire = "#74c7ec";
|
|
||||||
lavender = "#b4befe";
|
|
||||||
green = "#a6e3a1";
|
|
||||||
};
|
|
||||||
|
|
||||||
|
# Map your custom names to Stylix/Base16 colors
|
||||||
|
# Stylix colors are available at: config.lib.stylix.colors.withHashtag.base0X
|
||||||
|
palettes.base16 = {
|
||||||
|
# Using standard Catppuccin/Base16 mapping
|
||||||
|
surface0 = "${config.lib.stylix.colors.withHashtag.base00}"; # Darkest BG
|
||||||
|
surface1 = "${config.lib.stylix.colors.withHashtag.base01}"; # Slightly lighter BG
|
||||||
|
text = "${config.lib.stylix.colors.withHashtag.base05}"; # Main Text
|
||||||
|
peach = "${config.lib.stylix.colors.withHashtag.base09}"; # Orange accent
|
||||||
|
lavender = "${config.lib.stylix.colors.withHashtag.base0E}"; # Purple accent
|
||||||
|
sapphire = "${config.lib.stylix.colors.withHashtag.base0C}"; # Cyan accent
|
||||||
|
};
|
||||||
os = {
|
os = {
|
||||||
disabled = false;
|
disabled = false;
|
||||||
format = "[$symbol]($style)";
|
format = "[$symbol]($style)";
|
||||||
|
|||||||
+12
-3
@@ -1,10 +1,19 @@
|
|||||||
{inputs, ...}: {
|
{
|
||||||
|
inputs,
|
||||||
|
myConfig,
|
||||||
|
lib,
|
||||||
|
...
|
||||||
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
inputs.stylix.homeModules.stylix
|
inputs.stylix.homeModules.stylix
|
||||||
];
|
];
|
||||||
stylix = {
|
stylix = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoEnable = false;
|
# autoEnable = false;
|
||||||
image = ../../assets/Wallpapers/nord-1.png;
|
image = ../../assets/Wallpapers/${myConfig.hyprland.wallpaper};
|
||||||
|
polarity = "dark";
|
||||||
|
# base16Scheme = lib.mkDefault {
|
||||||
|
# generator = "vibrant";
|
||||||
|
# };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
{
|
{config, ...}: let
|
||||||
|
colors = config.lib.stylix.colors.withHashtag;
|
||||||
|
in {
|
||||||
programs.waybar = {
|
programs.waybar = {
|
||||||
style = ''
|
style = ''
|
||||||
|
|
||||||
* {
|
* {
|
||||||
background-color: #cdd6f4;
|
background-color: ${colors.base11};
|
||||||
color: #181824;
|
color: ${colors.base05};
|
||||||
|
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 28 KiB |
@@ -32,6 +32,7 @@
|
|||||||
};
|
};
|
||||||
hyprland = {
|
hyprland = {
|
||||||
monitors = ["HDMI-A-1, 1920x1080@120, auto, 1"];
|
monitors = ["HDMI-A-1, 1920x1080@120, auto, 1"];
|
||||||
|
wallpaper = "cattppucin_minimal.png";
|
||||||
};
|
};
|
||||||
firefox = {
|
firefox = {
|
||||||
bookmarks = [
|
bookmarks = [
|
||||||
|
|||||||
Reference in New Issue
Block a user