From 52d2d34b2fef0ec356e49d3ff573de886f44c8e0 Mon Sep 17 00:00:00 2001 From: Luna Komorebi Date: Tue, 6 Jun 2023 02:37:25 +0200 Subject: [PATCH] Remove post-laptop-install script --- post-laptop-install.sh | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 post-laptop-install.sh diff --git a/post-laptop-install.sh b/post-laptop-install.sh deleted file mode 100644 index 1318c95..0000000 --- a/post-laptop-install.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/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