Switch default video player to celluloid
This commit is contained in:
parent
fb71a39b8e
commit
d07bfc5ca9
1 changed files with 3 additions and 5 deletions
|
|
@ -6,7 +6,7 @@
|
|||
pkgs.exiftool
|
||||
pkgs.mediainfo
|
||||
pkgs.unar
|
||||
pkgs.mpv
|
||||
pkgs.celluloid
|
||||
];
|
||||
};
|
||||
|
||||
|
|
@ -51,16 +51,14 @@
|
|||
{ run = '''exiftool "$1"; echo "Press enter to exit"; read''; block = true; display_name = "Show EXIF"; }
|
||||
];
|
||||
video = [
|
||||
{ run = ''mpv "$@"''; display_name = "Open with MPV"; }
|
||||
{ run = ''umpv "$@"''; display_name = "Open with uMPV"; }
|
||||
{ run = ''celluloid "$@"''; display_name = "Open with Celluloid"; }
|
||||
{ run = ''totem "$@"''; display_name = "Open with Totem"; }
|
||||
{ run = ''mediainfo "$1"; echo "Press enter to exit"; read''; block = true; display_name = "Show media info"; }
|
||||
{ run = ''xdg-open "$@"''; display_name = "Open with default"; }
|
||||
{ run = ''$VISUAL "$@"''; }
|
||||
];
|
||||
audio = [
|
||||
{ run = ''mpv "$@"''; display_name = "Open with MPV"; }
|
||||
{ run = ''umpv "$@"''; display_name = "Open with uMPV"; }
|
||||
{ run = ''celluloid "$@"''; display_name = "Open with Celluloid"; }
|
||||
{ run = '''mediainfo "$1"; echo "Press enter to exit"; read''; block = true; display_name = "Show media info"; }
|
||||
{ run = ''xdg-open "$@"''; display_name = "Open with default"; }
|
||||
{ run = ''$VISUAL "$@"''; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue