2025-07-13 06:04:55 +08:00
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
inputs,
|
|
|
|
|
...
|
|
|
|
|
}: let
|
2025-06-24 21:42:12 +08:00
|
|
|
inherit (inputs.niri-flake.lib.kdl) node leaf flag;
|
2025-04-30 18:32:16 +08:00
|
|
|
in {
|
|
|
|
|
david.programs.niri = {
|
2025-07-13 06:04:55 +08:00
|
|
|
waybar.settings = let
|
|
|
|
|
cfg = config.david.programs.niri.waybar;
|
|
|
|
|
in [
|
|
|
|
|
(cfg.template // (cfg.helper.mkBacklight "ddcci13") // {output = "DP-3";})
|
|
|
|
|
(cfg.template // (cfg.helper.mkBacklight "nvidia_0") // {output = "eDP-1";})
|
|
|
|
|
];
|
2025-07-06 08:58:26 +08:00
|
|
|
wluma.extraSettings = {
|
|
|
|
|
output = {
|
|
|
|
|
backlight = [
|
|
|
|
|
{
|
|
|
|
|
name = "eDP-1";
|
|
|
|
|
path = "/sys/class/backlight/nvidia_0";
|
|
|
|
|
capturer = "wayland";
|
|
|
|
|
}
|
|
|
|
|
{
|
|
|
|
|
name = "DP-3";
|
2025-07-13 06:04:55 +08:00
|
|
|
path = "/sys/class/backlight/ddcci13";
|
2025-07-06 08:58:26 +08:00
|
|
|
capturer = "wayland";
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
keyboard = [
|
|
|
|
|
{
|
|
|
|
|
name = "keyboard-asus";
|
|
|
|
|
path = "/sys/bus/platform/devices/asus-nb-wmi/leds/asus::kbd_backlight";
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
};
|
2025-04-30 18:32:16 +08:00
|
|
|
extraConfig = let
|
|
|
|
|
output = node "output";
|
|
|
|
|
in [
|
2025-06-20 03:38:56 +08:00
|
|
|
(output ["DP-3"] [
|
|
|
|
|
(leaf "mode" ["2560x1440@169.900"])
|
|
|
|
|
(leaf "scale" [1.0])
|
|
|
|
|
(leaf "position" [
|
|
|
|
|
{
|
|
|
|
|
x = 0;
|
|
|
|
|
y = 0;
|
|
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
(leaf "transform" ["normal"])
|
2025-05-08 23:58:23 +08:00
|
|
|
(flag "focus-at-startup")
|
|
|
|
|
])
|
2025-06-20 03:38:56 +08:00
|
|
|
(output ["DP-1"] [
|
|
|
|
|
(leaf "mode" ["2560x1440@169.900"])
|
|
|
|
|
(leaf "scale" [1.0])
|
|
|
|
|
(leaf "position" [
|
|
|
|
|
{
|
|
|
|
|
x = 0;
|
|
|
|
|
y = 0;
|
|
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
(leaf "transform" ["normal"])
|
2025-05-02 15:36:40 +08:00
|
|
|
(flag "focus-at-startup")
|
2025-04-30 18:32:16 +08:00
|
|
|
])
|
2025-06-20 03:38:56 +08:00
|
|
|
(output ["eDP-1"] [
|
|
|
|
|
(leaf "mode" ["2560x1440@165.003"])
|
|
|
|
|
(leaf "scale" [1.5])
|
|
|
|
|
(leaf "position" [
|
|
|
|
|
{
|
|
|
|
|
x = 2560;
|
|
|
|
|
y = 0;
|
|
|
|
|
}
|
|
|
|
|
])
|
|
|
|
|
(leaf "transform" ["normal"])
|
2025-04-30 18:32:16 +08:00
|
|
|
])
|
|
|
|
|
];
|
|
|
|
|
};
|
|
|
|
|
}
|