1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-05 21:15:38 -05:00

Add clipboard history command to niri spawn-at-startup options (#545)

This commit is contained in:
Jack Grahn
2025-10-25 10:08:48 -04:00
committed by GitHub
parent 959766b265
commit 607b5320fd

View File

@@ -90,9 +90,15 @@ in {
}) })
(lib.mkIf cfg.niri.enableSpawn { (lib.mkIf cfg.niri.enableSpawn {
spawn-at-startup = [ spawn-at-startup =
{command = ["dms" "run"];} [
]; {command = ["dms" "run"];}
]
++ lib.optionals cfg.enableClipboard [
{
command = ["wl-paste" "--watch" "cliphist" "store"];
}
];
}) })
]; ];
}; };