mirror of
https://github.com/EdenQwQ/nixos.git
synced 2026-07-16 22:16:51 +08:00
fix screen flickering and keyboard not working
This commit is contained in:
parent
658b24fc7e
commit
9c2386d19e
7 changed files with 74 additions and 51 deletions
|
|
@ -393,7 +393,7 @@ def expand_all_hex(text: str) -> str:
|
|||
|
||||
return re.sub(
|
||||
r"((?<!&)#[A-Fa-f0-9]{3})\b",
|
||||
lambda match: ("#" + "".join([c * 2 for c in match.group(1)[1:]])),
|
||||
lambda match: "#" + "".join([c * 2 for c in match.group(1)[1:]]),
|
||||
text,
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -62,7 +62,7 @@ let
|
|||
includes ? [ ],
|
||||
ignores ? [ ],
|
||||
modes ? [ ],
|
||||
extraConfig ? '''',
|
||||
extraConfig ? "",
|
||||
}:
|
||||
(
|
||||
(map (file: "include ${file}") includes)
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@
|
|||
in
|
||||
{
|
||||
nixos.expr = # nix
|
||||
''${flake}.nixosConfigurations.${host}.options'';
|
||||
"${flake}.nixosConfigurations.${host}.options";
|
||||
home_manager.expr = # nix
|
||||
''${flake}.homeConfigurations."${user}@${host}".options'';
|
||||
};
|
||||
|
|
|
|||
|
|
@ -383,8 +383,8 @@ in
|
|||
#tray > .needs-attention {
|
||||
-gtk-icon-effect: highlight;
|
||||
}
|
||||
|
||||
'';
|
||||
|
||||
'';
|
||||
".config/mango/waybar/animation.css".text =
|
||||
# css
|
||||
''
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue