From 4accf268d47d2a5673e0bac3ac71f1400f35b2f3 Mon Sep 17 00:00:00 2001 From: ndwarshuis Date: Sat, 12 Jun 2021 00:16:04 -0400 Subject: [PATCH] ADD isntall deps script --- install_deps | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100755 install_deps diff --git a/install_deps b/install_deps new file mode 100755 index 0000000..96a734c --- /dev/null +++ b/install_deps @@ -0,0 +1,8 @@ +#!/bin/bash + +# install all dependencies for rofi to run at full capacity + +rofi_pkgs=(rofi-git bitwarden-cli libnotify rofi-greenclip + networkmanager-dmenu-git veracrypt sshfs jmtpfs) + +yay --needed --noconfirm --norebuild --removemake -S "${rofi_pkgs[@]}"