]> git.r.bdr.sh - rbdr/dotfiles/blame - provision
Update URxvt copy and paste
[rbdr/dotfiles] / provision
CommitLineData
cb36b00f 1#!/usr/bin/env bash
8bf2adee
RBR
2
3if [[ -z "$1" ]]; then
4 echo "Run with parameters: essential, nice, cask_essential, or cask_nice"
5else
6 if command -v brew &> /dev/null; then
7 command_name="brew"
8 else
9 if command -v apt &> /dev/null; then
650123f4 10 command_name="apt"
8bf2adee
RBR
11 else
12 echo "Error: No valid package manager. Make sure brew or apt are available."
13 exit 1
14 fi
15 fi
16 file="./provisioning/${command_name}_$1"
17 if [[ -f $file ]]; then
18 echo "Provisioning $1 with $command_name"
19 cat ./provisioning/${command_name}_$1 | xargs ${command_name} install
20 else
21 echo "No provisioning recipe for $1 with $command_name"
1c7e8bca 22 exit 1
8bf2adee
RBR
23 fi
24fi