This commit is contained in:
Evan Reichard 2025-04-10 17:17:20 -04:00
parent 7f1a644fcc
commit 941e972b30
5 changed files with 32 additions and 22 deletions

View File

@ -44,20 +44,31 @@ in
}; };
}; };
# home.packages = with pkgs; [
# catppuccin-gtk
# ];
dconf = { dconf = {
settings = { settings = {
"org/gnome/desktop/interface" = { "org/gnome/desktop/interface" = {
color-scheme = "prefer-dark";
cursor-theme = "catppuccin-macchiato-mauve-cursors"; cursor-theme = "catppuccin-macchiato-mauve-cursors";
cursor-size = 24;
# enable-hot-corners = false;
# font-name = osConfig.${namespace}.system.fonts.default;
# gtk-theme = cfg.theme.name;
# icon-theme = cfg.icon.name;
}; };
}; };
}; };
home.pointerCursor = { home.pointerCursor = {
x11.enable = true; # x11.enable = true;
gtk.enable = true; gtk.enable = true;
package = pkgs.catppuccin-cursors.macchiatoMauve;
name = "catppuccin-macchiato-mauve-cursors"; name = "catppuccin-macchiato-mauve-cursors";
size = 64; package = pkgs.catppuccin-cursors.macchiatoMauve;
size = 24;
}; };
# Kubernetes Secrets # Kubernetes Secrets

View File

@ -3,8 +3,8 @@
################ ################
# See https://wiki.hyprland.org/Configuring/Monitors/ # See https://wiki.hyprland.org/Configuring/Monitors/
# debug:disable_scale_checks = true
monitor=,highres,auto,2 # 1.68 monitor=,highres,auto,2 # 1.68
debug:disable_scale_checks = true
################### ###################
### MY PROGRAMS ### ### MY PROGRAMS ###
@ -38,8 +38,8 @@ exec-once = uwsm app -- firefox
# See https://wiki.hyprland.org/Configuring/Environment-variables/ # See https://wiki.hyprland.org/Configuring/Environment-variables/
env = XCURSOR_SIZE,24 # env = XCURSOR_SIZE,24
env = HYPRCURSOR_SIZE,24 # env = HYPRCURSOR_SIZE,24
##################### #####################

View File

@ -61,11 +61,6 @@
background-color: @surface0; background-color: @surface0;
} }
#workspaces {
padding: 0px;
margin-left: 1rem;
}
#workspaces button { #workspaces button {
color: @lavender; color: @lavender;
border-radius: 1rem; border-radius: 1rem;
@ -118,11 +113,6 @@
color: @red; color: @red;
} }
#clock {
color: @blue;
margin-right: 1rem;
}
/* Left Border Radius */ /* Left Border Radius */
#clock, #clock,
#network, #network,
@ -144,3 +134,13 @@
border-top-right-radius: 1rem; border-top-right-radius: 1rem;
border-bottom-right-radius: 1rem; border-bottom-right-radius: 1rem;
} }
#workspaces {
padding: 0px;
margin-left: 1rem;
}
#clock {
color: @blue;
margin-right: 1rem;
}

View File

@ -87,10 +87,6 @@ in
format-alt = " {used:0.1f}G"; format-alt = " {used:0.1f}G";
max-length = 10; max-length = 10;
}; };
# backlight = {
# format = "󰖨 {}%";
# device = "acpi_video0";
# };
backlight = { backlight = {
format = "{icon}"; format = "{icon}";
@ -184,6 +180,9 @@ in
xdg.configFile = { xdg.configFile = {
"wofi/config".source = ./config/wofi.conf; "wofi/config".source = ./config/wofi.conf;
"wofi/style.css".source = ./config/wofi-style.css; "wofi/style.css".source = ./config/wofi-style.css;
"uwsp/env".text = ''
export XCURSOR_SIZE=64
'';
}; };
}; };
} }

View File

@ -1,6 +1,6 @@
{ config, lib, pkgs, namespace, ... }: { config, lib, pkgs, namespace, ... }:
let let
inherit (lib) types mkIf mkDefault mkOption mkEnableOption; inherit (lib) types mkIf mkForce mkOption mkEnableOption;
inherit (lib.${namespace}) mkBoolOpt enabled; inherit (lib.${namespace}) mkBoolOpt enabled;
cfg = config.${namespace}.system.networking; cfg = config.${namespace}.system.networking;
@ -53,7 +53,7 @@ in
networking = { networking = {
firewall = enabled; firewall = enabled;
useDHCP = (cfg.useDHCP && cfg.useStatic == null); useDHCP = mkForce (cfg.useDHCP && cfg.useStatic == null);
useNetworkd = cfg.useNetworkd; useNetworkd = cfg.useNetworkd;
} // (lib.optionalAttrs (cfg.enableIWD) { } // (lib.optionalAttrs (cfg.enableIWD) {
wireless.iwd = { wireless.iwd = {