Compare commits
No commits in common. "1e229c2d1fda4fcb021cb3d7758474b1f780b81f" and "2af99c51d74f746e1e0f937c3617ae14d600cc24" have entirely different histories.
1e229c2d1f
...
2af99c51d7
|
@ -1,33 +1,34 @@
|
||||||
{...}: {
|
{...}: {
|
||||||
imports = [./work.nix];
|
imports = [./work.nix];
|
||||||
wayland.windowManager.sway.config.output = {
|
wayland.windowManager.sway.config.output = {
|
||||||
"eDP-1" = {
|
"eDP-1".scale = "1.25";
|
||||||
scale = "1.25";
|
"Dell Inc. DELL P3223QE CCG8YN3".scale = "1.5";
|
||||||
position = "2560 576";
|
|
||||||
};
|
|
||||||
"Dell Inc. DELL P3223QE CCG8YN3" = {
|
|
||||||
scale = "1.5";
|
|
||||||
position = "0 0";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
services.kanshi = {
|
services.kanshi = {
|
||||||
enable = true;
|
enable = true;
|
||||||
systemdTarget = "sway-session.target";
|
systemdTarget = "sway-session.target";
|
||||||
profiles = let
|
profiles = {
|
||||||
laptopScreen = {
|
undocked = {
|
||||||
|
outputs = [
|
||||||
|
{
|
||||||
criteria = "eDP-1";
|
criteria = "eDP-1";
|
||||||
status = "enable";
|
status = "enable";
|
||||||
};
|
scale = 1.25;
|
||||||
monitor = {
|
}
|
||||||
criteria = "Dell Inc. DELL P3223QE CCG8YN3";
|
];
|
||||||
status = "enable";
|
|
||||||
};
|
|
||||||
in {
|
|
||||||
undocked = {
|
|
||||||
outputs = [laptopScreen];
|
|
||||||
};
|
};
|
||||||
docked = {
|
docked = {
|
||||||
outputs = [monitor laptopScreen];
|
outputs = [
|
||||||
|
{
|
||||||
|
criteria = "Dell Inc. DELL P3223QE CCG8YN3";
|
||||||
|
status = "enable";
|
||||||
|
scale = 1.5;
|
||||||
|
}
|
||||||
|
{
|
||||||
|
criteria = "eDP-1";
|
||||||
|
status = "disable";
|
||||||
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -97,11 +97,6 @@
|
||||||
inherit criteria;
|
inherit criteria;
|
||||||
command = "layout tabbed";
|
command = "layout tabbed";
|
||||||
}) [
|
}) [
|
||||||
{app_id = "WebCord";}
|
|
||||||
{app_id = "signal";}
|
|
||||||
{app_id = "whatsapp-for-linux";}
|
|
||||||
{app_id = "teams-for-linux";}
|
|
||||||
{app_id = "twinkle";}
|
|
||||||
{class = "Nxplayer\.bin";}
|
{class = "Nxplayer\.bin";}
|
||||||
{app_id = "Nxplayer\.bin";}
|
{app_id = "Nxplayer\.bin";}
|
||||||
])
|
])
|
||||||
|
|
Reference in a new issue