1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2026-04-15 18:22:08 -04:00

nix: remove wl-clipboard and cliphist dependencies (#991)

This commit is contained in:
Lucas
2025-12-11 23:44:36 -03:00
committed by GitHub
parent 89dcd72d70
commit c3ffb7f83b
3 changed files with 5 additions and 25 deletions

View File

@@ -76,18 +76,16 @@ in
action = dms-ipc "night" "toggle";
hotkey-overlay.title = "Toggle Night Mode";
};
"Mod+V" = {
action = dms-ipc "clipboard" "toggle";
hotkey-overlay.title = "Toggle Clipboard Manager";
};
}
// lib.attrsets.optionalAttrs cfg.enableSystemMonitoring {
"Mod+M" = {
action = dms-ipc "processlist" "toggle";
hotkey-overlay.title = "Toggle Process List";
};
}
// lib.attrsets.optionalAttrs cfg.enableClipboard {
"Mod+V" = {
action = dms-ipc "clipboard" "toggle";
hotkey-overlay.title = "Toggle Clipboard Manager";
};
};
})
@@ -99,16 +97,6 @@ in
"run"
];
}
]
++ lib.optionals cfg.enableClipboard [
{
command = [
"wl-paste"
"--watch"
"cliphist"
"store"
];
}
];
})
];