better aliases

This commit is contained in:
Jana Dönszelmann 2025-09-26 10:36:35 -07:00
parent 816c61985d
commit c89bd50f8e
No known key found for this signature in database
4 changed files with 150 additions and 31 deletions

View file

@ -0,0 +1,25 @@
{ pkgs
, lib
, cosmicLib
, ...
}:
let
ron = cosmicLib.cosmic.mkRON;
in
{
wayland.desktopManager.cosmic = {
enable = true;
# shortcuts = [
# {
# action = ron "enum" "Close";
# key = "Super+Q";
# }
# {
# action = ron "enum" "maximize";
# key = "Super+d";
# }
# ];
};
}