From 180389d19b9ebdcc203074ee5ecf61350b35801a Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Thu, 27 Oct 2016 14:49:49 -0700 Subject: [PATCH] [Linux] Alias xdg-open to open --- dotfiles/lib/shellenv/linux.sh | 1 + 1 file changed, 1 insertion(+) create mode 100644 dotfiles/lib/shellenv/linux.sh diff --git a/dotfiles/lib/shellenv/linux.sh b/dotfiles/lib/shellenv/linux.sh new file mode 100644 index 00000000..3c1e4413 --- /dev/null +++ b/dotfiles/lib/shellenv/linux.sh @@ -0,0 +1 @@ +command_exists 'open' || command_exists 'xdg-open' && alias open='xdg-open'