dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit e9b84d8cbddfd19748766ab1943b6716968b7387
parent 51fa4ce3acfea5f60a7819d5684fab863c8eaa21
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Thu, 14 Nov 2019 19:12:53 +0100

Do not open mpv in background

Diffstat:
M.local/bin/xdg-open | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.local/bin/xdg-open b/.local/bin/xdg-open @@ -35,7 +35,7 @@ handle_target() { sxiv "$1" >/dev/null 2>&1 & return 0;; video/*|audio/*) - mpv "$1" >/dev/null 2>&1 & + mpv "$1" return 0;; text/html) $BROWSER "$1" >/dev/null 2>&1 &