From 3eb462c992e9612e3571b17269dda290f391cda6 Mon Sep 17 00:00:00 2001 From: sinanmohd Date: Tue, 16 Jul 2024 13:57:09 +0530 Subject: home/wayland/ttyasrt: init --- home/wayland/modules/ttyasrt.nix | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 home/wayland/modules/ttyasrt.nix (limited to 'home/wayland/modules') diff --git a/home/wayland/modules/ttyasrt.nix b/home/wayland/modules/ttyasrt.nix new file mode 100644 index 0000000..ba9a2c5 --- /dev/null +++ b/home/wayland/modules/ttyasrt.nix @@ -0,0 +1,34 @@ +{ pkgs, ... }: let + wayland-scripts = pkgs.callPackage ../pkgs/wayland-scripts {}; + ttyasrt = "${wayland-scripts}/bin/ttyasrt"; +in { + home.packages = [ wayland-scripts ]; + + xdg.desktopEntries = { + "nnn".settings = { + Type = "Application"; + Name = "nnn"; + Comment = "Terminal file manager"; + TryExec = "nnn"; + Exec = "${ttyasrt} nnn -decC"; + Icon = "nnn"; + MimeType = "inode/directory"; + Categories = "System;FileTools;FileManager"; + Keywords = "File;Manager;Management;Explorer;Launcher"; + }; + + "nvim".settings = { + Name = "Neovim wrapper"; + GenericName = "Text Editor"; + Comment = "Edit text files"; + TryExec = "nvim"; + Exec = "${ttyasrt} nvim %F"; + Type = "Application"; + Keywords = "Text;editor;"; + Icon = "nvim"; + Categories = "Utility;TextEditor;"; + StartupNotify = "false"; + MimeType = "text/plain"; + }; + }; +} -- cgit v1.2.3