From b3b2f407b766ccee4cef82f5d940ec4af9f26d51 Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 3 Nov 2024 17:48:55 -0600 Subject: [PATCH] feat: removed broken stuff --- home-manager/modules/yazi.nix | 76 ----------------------------------- 1 file changed, 76 deletions(-) diff --git a/home-manager/modules/yazi.nix b/home-manager/modules/yazi.nix index 0f17dad..0dd371e 100755 --- a/home-manager/modules/yazi.nix +++ b/home-manager/modules/yazi.nix @@ -28,82 +28,6 @@ max_width = 1500; max_height = 1000; }; - opener = { - reveal = [ - { - exec = "exiftool \"$1\" | $PAGER"; - block = true; - desc = "Show EXIF"; - for = "unix"; - } - ]; - open = [ - { - exec = "nomacs \"$@\""; - desc = "Nomacs"; - orphan = true; - for = "unix"; - } - { - exec = "code \"$@\""; - desc = "VSCode"; - orphan = true; - for = "unix"; - } - { - exec = "firefox \"$@\""; - desc = "Firefox"; - orphan = true; - for = "unix"; - } - { - exec = "krita \"$@\""; - desc = "Krita"; - orphan = true; - for = "unix"; - } - ]; - edit = [ - { - exec = "wezterm -e hx \"$@\""; - desc = "Helix"; - orphan = true; - for = "unix"; - } - { - exec = "code \"$@\""; - desc = "VSCode"; - orphan = true; - for = "unix"; - } - { - exec = "tokei \"$1\" | $PAGER"; - block = true; - desc = "Count Lines"; - for = "unix"; - } - ]; - play = [ - { - exec = "celluloid \"$@\""; - desc = "MPV"; - orphan = true; - for = "unix"; - } - { - exec = "vlc \"$@\""; - desc = "VLC"; - orphan = true; - for = "unix"; - } - { - exec = "mediainfo \"$1\" | $PAGER"; - block = true; - desc = "Media Info"; - for = "unix"; - } - ]; - }; }; }; }