From 76a1300c1515bdc5e1684fd88aa910721a2a0f48 Mon Sep 17 00:00:00 2001 From: Wez Furlong Date: Sun, 7 Jun 2020 10:57:41 -0700 Subject: [PATCH] wezterm: teach get-deps about Arch --- get-deps | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/get-deps b/get-deps index f6c525719..9bd3a3303 100755 --- a/get-deps +++ b/get-deps @@ -54,6 +54,25 @@ if test -e /etc/debian_version ; then exit $? fi +if test -e /etc/arch-release ; then + pacman -S --noconfirm --needed + 'cargo' \ + 'cmake' \ + 'dbus' \ + 'fontconfig' \ + 'git' \ + 'hicolor-icon-theme' \ + 'libx11' \ + 'libxkbcommon-x11' \ + 'pkgconf' \ + 'python3' \ + 'rust' \ + 'wayland' \ + 'xcb-util-keysyms' \ + 'xcb-util-wm' + exit $? +fi + case $OSTYPE in darwin*|msys) exit 0