diff options
| author | srdusr <trevorgray@srdusr.com> | 2023-09-11 21:13:27 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2023-09-11 21:13:27 +0200 |
| commit | 995ae5c41cb97493bf03adcf5eb6520362292600 (patch) | |
| tree | c1689d9bf129dc23e89cfb671b6e7bba17c4b7c5 /.local/bin/scripts/install.sh | |
| parent | a9347a8d6783b360d0e4481151944b0f961404d9 (diff) | |
| parent | b9d5ce0f653d5dcdb939cc5cb3bb888f5abc13f9 (diff) | |
| download | dotfiles-995ae5c41cb97493bf03adcf5eb6520362292600.tar.gz dotfiles-995ae5c41cb97493bf03adcf5eb6520362292600.zip | |
Merge commit '31aa1446c0ed117dd02fb4b891ecf2af84ecd9b9'
Diffstat (limited to '.local/bin/scripts/install.sh')
| -rw-r--r-- | .local/bin/scripts/install.sh | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/.local/bin/scripts/install.sh b/.local/bin/scripts/install.sh deleted file mode 100644 index b811355..0000000 --- a/.local/bin/scripts/install.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -if [[ $EUID -eq 0 ]]; then - echo "This script must not be run as root" - exit 1 -fi - -# Install system packages -packages=( - "ripgrep" - "xclip" - "ctags" -) - -for package in "${packages[@]}"; do - if ! pacman -Qi "$package" > /dev/null 2>&1; then - sudo pacman -S --noconfirm "$package" - fi -done |
