Add Kanshi, Hyprland, remove Niri
This commit is contained in:
parent
4e90ea2e1c
commit
6feca365ff
26 changed files with 430 additions and 461 deletions
|
@ -2,6 +2,7 @@
|
|||
{
|
||||
imports = [
|
||||
./grimsnap
|
||||
./kanshi
|
||||
./mako
|
||||
./swaylock
|
||||
./waybar
|
||||
|
|
59
modules/home/wms/programs/kanshi/default.nix
Normal file
59
modules/home/wms/programs/kanshi/default.nix
Normal file
|
@ -0,0 +1,59 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
services.kanshi = {
|
||||
enable = true;
|
||||
settings = [
|
||||
{
|
||||
profile = {
|
||||
name = "tower";
|
||||
outputs = [
|
||||
{
|
||||
criteria = "Microstep MSI G24C 0000000000001";
|
||||
position = "3840,405";
|
||||
mode = "1920x1080@143.979996Hz";
|
||||
}
|
||||
{
|
||||
criteria = "BNQ BenQ GW2270 6CH00781019";
|
||||
position = "1920,405";
|
||||
}
|
||||
{
|
||||
criteria = "Eizo Nanao Corporation CG223W 23252050";
|
||||
position = "5760,0";
|
||||
transform = "90";
|
||||
}
|
||||
{
|
||||
criteria = "Samsung Electric Company SAMSUNG Unknown";
|
||||
position = "0,405";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
{
|
||||
profile = {
|
||||
name = "docked";
|
||||
outputs = [
|
||||
{
|
||||
criteria = "*";
|
||||
status = "enable";
|
||||
}
|
||||
{
|
||||
criteria = "eDP-1";
|
||||
status = "disable";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
{
|
||||
profile = {
|
||||
name = "undocked";
|
||||
outputs = [
|
||||
{
|
||||
criteria = "eDP-1";
|
||||
status = "enable";
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue