This commit is contained in:
Sean Kovacs 2026-01-15 18:32:50 -05:00
commit 9c4d353ef5
Signed by: sckova
GPG key ID: 00F325187C68651A
2 changed files with 15 additions and 6 deletions

View file

@ -50,7 +50,11 @@
}; };
outputs = { outputs = {
"eDP-1" = { "eDP-1" = {
scale = 1.75; scale = 1.5;
position = {
x = 272;
y = 1440;
};
}; };
"HDMI-A-1" = { "HDMI-A-1" = {
mode = { mode = {
@ -59,6 +63,10 @@
refresh = 144.000; refresh = 144.000;
}; };
scale = 1.5; scale = 1.5;
position = {
x = 0;
y = 0;
};
}; };
"DP-1" = { "DP-1" = {
mode = { mode = {
@ -67,6 +75,10 @@
refresh = 143.999; refresh = 143.999;
}; };
scale = 1.5; scale = 1.5;
position = {
x = 0;
y = 0;
};
}; };
}; };
cursor = { cursor = {

View file

@ -18,7 +18,7 @@
mOnTertiary = palette.crust; mOnTertiary = palette.crust;
mError = palette.red; mError = palette.red;
mOnError = palette.crust; mOnError = palette.crust;
mSurface = palette.base; mSurface = palette.mantle;
mOnSurface = palette.text; mOnSurface = palette.text;
mSurfaceVariant = palette.surface0; mSurfaceVariant = palette.surface0;
mOnSurfaceVariant = palette.lavender; mOnSurfaceVariant = palette.lavender;
@ -37,9 +37,6 @@
# Convert to JSON # Convert to JSON
schemeJson = builtins.toJSON customScheme; schemeJson = builtins.toJSON customScheme;
# Write to file - escape for shell
schemeJsonEscaped = lib.escapeShellArg schemeJson;
customPackage = pkgs.noctalia-shell.overrideAttrs (oldAttrs: { customPackage = pkgs.noctalia-shell.overrideAttrs (oldAttrs: {
pname = "noctalia-shell-custom"; pname = "noctalia-shell-custom";
nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ [pkgs.jq]; nativeBuildInputs = (oldAttrs.nativeBuildInputs or []) ++ [pkgs.jq];
@ -93,7 +90,7 @@ in {
position = "top"; position = "top";
backgroundOpacity = 1; backgroundOpacity = 1;
monitors = []; monitors = [];
density = "comfortable"; density = "spacious";
showCapsule = true; showCapsule = true;
capsuleOpacity = 1; capsuleOpacity = 1;
floating = false; floating = false;