File : Remove Flatpak.

This commit is contained in:
Dmitry Voronin 2024-02-26 00:26:55 +03:00
parent a18ec08be9
commit c217a573f6

View file

@ -10,7 +10,7 @@ function play() {
local targets=${*}
[[ "${targets}" = "" ]] && targets=$(_ls_file)
flatpak run io.mpv.Mpv --no-video ${targets}
mpv --no-video ${targets}
}
# Play media files shuffled from CLI. All files by default.
@ -19,5 +19,5 @@ function play_shuffle() {
local targets=${*}
[[ "${targets}" = "" ]] && targets=$(_ls_file)
flatpak run io.mpv.Mpv --no-video --shuffle ${targets}
mpv --no-video --shuffle ${targets}
}