From 5234ae63b03f2416c200fcfc857221375db34fd5 Mon Sep 17 00:00:00 2001 From: "info@data-pro.nu" Date: Sun, 15 Mar 2026 11:56:20 +0000 Subject: [PATCH] finding hyprland.conf error --- .../assets/hyprland/conf/hypr/theming.conf | 63 +------------------ Droidnix/generated/hyprland/hyprland.nix | 18 ++---- 2 files changed, 7 insertions(+), 74 deletions(-) diff --git a/Droidnix/assets/hyprland/conf/hypr/theming.conf b/Droidnix/assets/hyprland/conf/hypr/theming.conf index 7db2f91d3..dfee87704 100644 --- a/Droidnix/assets/hyprland/conf/hypr/theming.conf +++ b/Droidnix/assets/hyprland/conf/hypr/theming.conf @@ -30,85 +30,26 @@ $rosewater = #f5e0dc # General theming general { - col.active_border = $blue $green 45deg - col.inactive_border = $surface1 80% - col.urgent_border = $red - col.float_border_active = $blue - col.float_border_inactive = $surface1 - col.focused_title = $text - col.unfocused_title = $subtext0 - col.backdrop = $base - col.backdrop_title = $overlay0 - col.backdrop_border = $surface1 - col.backdrop_float_border = $surface1 - col.backdrop_float_border_active = $blue - col.backdrop_float_title = $overlay0 - col.backdrop_float_title_active = $text - col.backdrop_float_urgent = $red - col.backdrop_float_urgent_title = $text - col.backdrop_float_urgent_border = $red - col.backdrop_group_active = $surface1 - col.backdrop_group_active_border = $blue - col.backdrop_group_active_title = $text - col.backdrop_group_inactive = $surface1 - col.backdrop_group_inactive_border = $surface1 - col.backdrop_group_inactive_title = $overlay0 - col.backdrop_group_urgent = $red - col.backdrop_group_urgent_border = $red - col.backdrop_group_urgent_title = $text + border_size = 2 + layout = dwindle } -# Window decorations decoration { rounding = 6 - blur = yes - blur_size = 3 - blur_passes = 2 - drop_shadow = yes - shadow_range = 4 - shadow_render_power = 3 - col.shadow = rgba(0, 0, 0, 0.8) - col.shadow_active = rgba(0, 0, 0, 0.5) - col.shadow_inactive = rgba(0, 0, 0, 0.3) } # Input fields (e.g., Hyprctl menus) input_field { - col.background = $surface0 - col.border = $blue - col.text = $text - col.placeholder = $overlay1 } # Hyprbar (if used) hyprbar { - col.background = $surface0 90% - col.text = $text - col.icon = $text - col.icon_unoccupied = $overlay1 - col.urgent = $red - col.urgent_text = $text - col.active_workspace = $blue - col.inactive_workspace = $overlay0 - col.occupied_workspace = $subtext0 } # Hyprlock (if used) hyprlock { - col.background = $base - col.input_field = $surface0 - col.text = $text - col.time_text = $blue - col.date_text = $green - col.wrong_password = $red - col.wrong_password_bg = $surface0 } # Hypridle (if used) hypridle { - col.lock = $base - col.lock_input_field = $surface0 - col.lock_text = $text - col.lock_time_text = $blue - col.lock_date_text = $green } diff --git a/Droidnix/generated/hyprland/hyprland.nix b/Droidnix/generated/hyprland/hyprland.nix index 5d749aec7..702935092 100644 --- a/Droidnix/generated/hyprland/hyprland.nix +++ b/Droidnix/generated/hyprland/hyprland.nix @@ -33,19 +33,11 @@ in }; # Ensure the Hyprland config directory exists and include all files - xdg.configFile = - ( - { - "hypr/.keep" = { - text = ""; - }; - } - // hyprlandConfs - ) - // { - "hypr/debug-hyprlandConfs.txt" = { - text = builtins.concatStringsSep "\n" (builtins.attrNames hyprlandConfs); - }; + xdg.configFile = { + "hypr/.keep" = { + text = ""; }; + } + // hyprlandConfs; }; }