remove celluloid

This commit is contained in:
Filippo Berto 2024-08-05 15:27:05 +02:00
parent 1a6d543d87
commit 36a04eada8
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
2 changed files with 8 additions and 11 deletions

View file

@ -1,10 +1,9 @@
{ pkgs, ... }: { {
# programs.mpv = { programs.mpv = {
# enable = true; enable = true;
# bindings = { bindings = {
# "Ctrl+Right" = "playlist-next"; "Ctrl+Right" = "playlist-next";
# "Ctrl+Left" = "playlist-prev"; "Ctrl+Left" = "playlist-prev";
# }; };
# }; };
home.packages = [ pkgs.celluloid ];
} }

View file

@ -40,7 +40,6 @@
{ run = '''exiftool "$1"; echo "Press enter to exit"; read''; block = true; display_name = "Show EXIF"; } { run = '''exiftool "$1"; echo "Press enter to exit"; read''; block = true; display_name = "Show EXIF"; }
]; ];
video = [ video = [
{ run = ''celluloid "$@"''; display_name = "Open with Celluloid"; }
{ run = ''mpv "$@"''; display_name = "Open with MPV"; } { run = ''mpv "$@"''; display_name = "Open with MPV"; }
{ run = ''umpv "$@"''; display_name = "Open with uMPV"; } { run = ''umpv "$@"''; display_name = "Open with uMPV"; }
{ run = ''totem "$@"''; display_name = "Open with Totem"; } { run = ''totem "$@"''; display_name = "Open with Totem"; }
@ -49,7 +48,6 @@
{ run = ''$VISUAL "$@"''; } { run = ''$VISUAL "$@"''; }
]; ];
audio = [ audio = [
{ run = ''celluloid "$@"''; display_name = "Open with Celluloid"; }
{ run = ''mpv "$@"''; display_name = "Open with MPV"; } { run = ''mpv "$@"''; display_name = "Open with MPV"; }
{ run = ''umpv "$@"''; display_name = "Open with uMPV"; } { run = ''umpv "$@"''; display_name = "Open with uMPV"; }
{ run = '''mediainfo "$1"; echo "Press enter to exit"; read''; block = true; display_name = "Show media info"; } { run = '''mediainfo "$1"; echo "Press enter to exit"; read''; block = true; display_name = "Show media info"; }