Skip to content

Instantly share code, notes, and snippets.

@HeitorAugustoLN
Created January 19, 2025 20:54
Show Gist options
  • Save HeitorAugustoLN/75d265c1243a6b574110089ddf098a9f to your computer and use it in GitHub Desktop.
Save HeitorAugustoLN/75d265c1243a6b574110089ddf098a9f to your computer and use it in GitHub Desktop.
Example of setting COSMIC Shortcuts using cosmic-manager
{ config, cosmicLib, ... }:
let
inherit (cosmicLib.cosmic) mkRon;
in
{
wayland.desktopManager.cosmic.shortcuts = cosmicLib.optionals config.programs.ghostty.enable [
{
action = mkRon "enum" {
variant = "Spawn";
value = [ "ghostty" ];
};
description = mkRon "optional" "Open Ghostty";
key = "Super+T";
}
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment