aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/scripts/install.sh
diff options
context:
space:
mode:
authorsrdusr <trevorgray@srdusr.com>2023-09-11 21:13:27 +0200
committersrdusr <trevorgray@srdusr.com>2023-09-11 21:13:27 +0200
commit995ae5c41cb97493bf03adcf5eb6520362292600 (patch)
treec1689d9bf129dc23e89cfb671b6e7bba17c4b7c5 /.local/bin/scripts/install.sh
parenta9347a8d6783b360d0e4481151944b0f961404d9 (diff)
parentb9d5ce0f653d5dcdb939cc5cb3bb888f5abc13f9 (diff)
downloaddotfiles-995ae5c41cb97493bf03adcf5eb6520362292600.tar.gz
dotfiles-995ae5c41cb97493bf03adcf5eb6520362292600.zip
Merge commit '31aa1446c0ed117dd02fb4b891ecf2af84ecd9b9'
Diffstat (limited to '.local/bin/scripts/install.sh')
-rw-r--r--.local/bin/scripts/install.sh19
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