fix
This commit is contained in:
@@ -3,8 +3,8 @@
|
||||
################
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Monitors/
|
||||
# debug:disable_scale_checks = true
|
||||
monitor=,highres,auto,2 # 1.68
|
||||
debug:disable_scale_checks = true
|
||||
|
||||
###################
|
||||
### MY PROGRAMS ###
|
||||
@@ -38,8 +38,8 @@ exec-once = uwsm app -- firefox
|
||||
|
||||
# See https://wiki.hyprland.org/Configuring/Environment-variables/
|
||||
|
||||
env = XCURSOR_SIZE,24
|
||||
env = HYPRCURSOR_SIZE,24
|
||||
# env = XCURSOR_SIZE,24
|
||||
# env = HYPRCURSOR_SIZE,24
|
||||
|
||||
|
||||
#####################
|
||||
|
||||
@@ -61,11 +61,6 @@
|
||||
background-color: @surface0;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
padding: 0px;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
color: @lavender;
|
||||
border-radius: 1rem;
|
||||
@@ -118,11 +113,6 @@
|
||||
color: @red;
|
||||
}
|
||||
|
||||
#clock {
|
||||
color: @blue;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
/* Left Border Radius */
|
||||
#clock,
|
||||
#network,
|
||||
@@ -144,3 +134,13 @@
|
||||
border-top-right-radius: 1rem;
|
||||
border-bottom-right-radius: 1rem;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
padding: 0px;
|
||||
margin-left: 1rem;
|
||||
}
|
||||
|
||||
#clock {
|
||||
color: @blue;
|
||||
margin-right: 1rem;
|
||||
}
|
||||
|
||||
@@ -87,10 +87,6 @@ in
|
||||
format-alt = " {used:0.1f}G";
|
||||
max-length = 10;
|
||||
};
|
||||
# backlight = {
|
||||
# format = " {}%";
|
||||
# device = "acpi_video0";
|
||||
# };
|
||||
|
||||
backlight = {
|
||||
format = "{icon}";
|
||||
@@ -184,6 +180,9 @@ in
|
||||
xdg.configFile = {
|
||||
"wofi/config".source = ./config/wofi.conf;
|
||||
"wofi/style.css".source = ./config/wofi-style.css;
|
||||
"uwsp/env".text = ''
|
||||
export XCURSOR_SIZE=64
|
||||
'';
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{ config, lib, pkgs, namespace, ... }:
|
||||
let
|
||||
inherit (lib) types mkIf mkDefault mkOption mkEnableOption;
|
||||
inherit (lib) types mkIf mkForce mkOption mkEnableOption;
|
||||
inherit (lib.${namespace}) mkBoolOpt enabled;
|
||||
|
||||
cfg = config.${namespace}.system.networking;
|
||||
@@ -53,7 +53,7 @@ in
|
||||
|
||||
networking = {
|
||||
firewall = enabled;
|
||||
useDHCP = (cfg.useDHCP && cfg.useStatic == null);
|
||||
useDHCP = mkForce (cfg.useDHCP && cfg.useStatic == null);
|
||||
useNetworkd = cfg.useNetworkd;
|
||||
} // (lib.optionalAttrs (cfg.enableIWD) {
|
||||
wireless.iwd = {
|
||||
|
||||
Reference in New Issue
Block a user