Add further software to Arch's personal profile
This commit is contained in:
parent
588396359a
commit
a415bd5361
2 changed files with 26 additions and 0 deletions
|
@ -3,6 +3,10 @@ pushd "${BASH_SOURCE%/*}" > /dev/null;
|
|||
|
||||
. "../Software/yay/install.sh";
|
||||
|
||||
yay --noconfirm -Syu \
|
||||
wget \
|
||||
oh-my-posh-bin;
|
||||
|
||||
# GRUB Shenanigans
|
||||
. "../Software/minegrub-theme/install.sh";
|
||||
|
||||
|
@ -17,4 +21,23 @@ yay --noconfirm -Syu \
|
|||
|
||||
. "../Config/GnomeExtensions/install.sh";
|
||||
|
||||
# rclone
|
||||
. "../Software/rclone/install.sh";
|
||||
|
||||
# Brave Browser
|
||||
yay --noconfirm -Syu \
|
||||
brave-bin \
|
||||
brave-beta-bin \
|
||||
brave-nightly-bin;
|
||||
|
||||
braveExtensions="/opt/brave-bin/extensions";
|
||||
|
||||
BROWSER_BIN="brave" \
|
||||
EXTENSION_DIR="/usr/share/chromium-extensions" \
|
||||
EXTENSION_POLICY_DIR="$braveExtensions" \
|
||||
source "../../Common/Config/Chromium/install-ytmusic-dl.sh";
|
||||
|
||||
ln -s "$braveExtensions" /opt/brave.com/brave-beta/extensions;
|
||||
ln -s "$braveExtensions" /opt/brave.com/brave-nightly/extensions;
|
||||
|
||||
popd > /dev/null;
|
||||
|
|
3
scripts/Arch/Software/rclone/install.sh
Normal file
3
scripts/Arch/Software/rclone/install.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
yay --noconfirm -Syu rclone;
|
||||
source "../../../Common/Config/rclone/install.sh";
|
Loading…
Reference in a new issue