X is the most fucked up software on the planet

This commit is contained in:
CDaut 2024-04-17 22:26:50 +02:00
parent f30d7f25da
commit 49742e2e92
5 changed files with 109 additions and 14 deletions

View file

@ -0,0 +1,41 @@
{ pkgs, ... }:
{
programs.autorandr = {
enable = true;
profiles = {
"docked" = {
fingerprint = {
HDMI-2-2 = "00ffffffffffff0030aee06557394834311d0103803c22782eb9a5a356509f260e5054adcf00d1c08180818a9500b300714f01010101023a801871382d40582c450056502100001e2a4480a0703827403020350056502100001a000000fd00314c365a15000a202020202020000000fc004c454e204c3237692d32380a20015f020327f14b010203040514111213101f230907078301000065030c001000681a00000101304c00011d007251d01e206e28550056502100001e8c0ad08a20e02d10103e96005650210000188c0ad090204031200c40550056502100001800000000000000000000000000000000000000000000000000000000000000000000f8";
eDP-1 = "00ffffffffffff004c83414100000000131d0104b5221378029491ae513eb7240b505400000001010101010101010101010101010101f0d40040f17018803020440058c21000001bf0d40040f17018803020440058c21000001b0000000f00ff093cff093c2c800000000000000000fe0041544e413536575230382d3020011502030f00e3058000e6060501736d0700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ab";
};
config = {
HDMI-2-2 = {
enable = true;
primary = true;
position = "5760x0";
mode = "1920x1080";
gamma = "1.0:0.909:0.833";
rate = "60.00";
scale = {
x = 1.0;
y = 1.0;
};
};
eDP-1 = {
enable = true;
primary = false;
position = "0x0";
mode = "3840x2160";
gamma = "1.0:0.909:0.833";
rate = "60.00";
scale = {
x = 0.5;
y = 0.5;
};
};
};
};
};
};
}

View file

@ -3,7 +3,8 @@
services.picom = {
enable = true;
backend = "xrender";
fade = true;
# TODO: figure out why this is so slooo
fade = false;
# The time between steps in a fade in milliseconds.
fadeDelta = 10;
@ -26,12 +27,12 @@
];
settings = {
blur = {
background = true;
method = "kernel";
kern = "7x7gaussian";
strength = 20;
};
#blur = {
# background = true;
# method = "kernel";
# kern = "7x7gaussian";
# strength = 20;
#};
detect-rounded-corners = true;
shadow-ignore-shaped = false;
};