From c68f23a8cf527ec21392c976615ac5400bbdeca3 Mon Sep 17 00:00:00 2001 From: lub Date: Sat, 26 Oct 2019 17:12:32 +0200 Subject: [PATCH] enable arg pass-trough for firefox --- dotfiles/bin/.bin/firefox | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dotfiles/bin/.bin/firefox b/dotfiles/bin/.bin/firefox index 1a9beb6..d547682 100755 --- a/dotfiles/bin/.bin/firefox +++ b/dotfiles/bin/.bin/firefox @@ -1,5 +1,6 @@ #!/bin/sh +echo $@ real_firefox=$(which --skip-tilde firefox) -GDK_BACKEND=wayland "${real_firefox}" \ No newline at end of file +GDK_BACKEND=wayland "${real_firefox}" "$@"