1
0
Fork 0
mirror of https://gitlab.com/mlunax/dotfiles.git synced 2025-04-19 08:45:36 +00:00
dotfiles/post-laptop-install.sh

9 lines
217 B
Bash

#!/usr/bin/env bash
scripts_path_prefix="./.local/.scripts"
laptop_scripts=("touchpad.sh")
for i in ${laptop_scripts[@]}; do
path="$scripts_path_prefix/$i"
if [ -f $path ]; then
cp -iv $path $HOME/$path
fi
done