From 78ebdce5854ad0a65f211a010045911b0672d9bb Mon Sep 17 00:00:00 2001 From: jolheiser Date: Thu, 2 Nov 2023 07:48:46 -0500 Subject: [PATCH] wip: ghostty Signed-off-by: jolheiser --- apps/nogui/xdg.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/apps/nogui/xdg.nix b/apps/nogui/xdg.nix index 7f47814..5565ed8 100644 --- a/apps/nogui/xdg.nix +++ b/apps/nogui/xdg.nix @@ -5,5 +5,19 @@ cacheHome = "${config.home.homeDirectory}/.cache"; configHome = "${config.home.homeDirectory}/.config"; dataHome = "${config.home.homeDirectory}/.local/share"; + desktopEntries.ghostty = { + name = "Ghostty"; + type = "Application"; + comment = "A terminal emulator"; + exec = "/home/jolheiser/.local/share/ghostty/bin/ghostty"; + icon = "com.mitchellh.ghostty"; + categories = ["System" "TerminalEmulator" "Utility"]; + startupNotify = true; + terminal = false; + #actions."new-window" = { + # name = "New Window"; + # exec = "ghostty"; + #}; + }; }; }