Compare commits
2 Commits
059cfef98a
...
1a6ab2840a
Author | SHA1 | Date | |
---|---|---|---|
1a6ab2840a | |||
bf948813da |
@ -247,6 +247,28 @@ in {
|
||||
}
|
||||
];
|
||||
};
|
||||
|
||||
kanshi = {
|
||||
enable = true;
|
||||
profiles.undocked.outputs = [
|
||||
{
|
||||
criteria = "eDP-1";
|
||||
}
|
||||
];
|
||||
profiles.docked.outputs = [
|
||||
{
|
||||
criteria = "eDP-1";
|
||||
}
|
||||
{
|
||||
criteria = "Philips Consumer Electronics Company PHL 272S1 UHB2347026536";
|
||||
mode = "1920x1080@74.973Hz";
|
||||
}
|
||||
{
|
||||
criteria = "Philips Consumer Electronics Company PHL 272S1 UHB2347026535";
|
||||
mode = "1920x1080@74.973Hz";
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
systemd.user = {
|
||||
|
@ -178,8 +178,16 @@
|
||||
serviceConfig.Nice = -20;
|
||||
script = ''
|
||||
sleep 1
|
||||
${zremap.defaultPackage.${system}}/bin/zremap \
|
||||
/dev/input/by-path/platform-i8042-serio-0-event-kbd
|
||||
KBD1="/dev/input/by-path/platform-i8042-serio-0-event-kbd"
|
||||
KBD2="/dev/input/by-path/pci-0000:07:00.3-usbv2-0:1.1.3.2:1.1-event-kbd"
|
||||
if [ -L "$KBD1" ]; then
|
||||
${zremap.defaultPackage.${system}}/bin/zremap "$KBD1" &
|
||||
fi
|
||||
if [ -L "$KBD2" ]; then
|
||||
${zremap.defaultPackage.${system}}/bin/zremap "$KBD2" &
|
||||
fi
|
||||
|
||||
wait
|
||||
'';
|
||||
};
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user