From 645773ca97c2f563054bb4d637d64e7a3441f985 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Thu, 30 Jan 2025 10:48:19 -0500 Subject: [PATCH] Add script for installing to ~ --- install-local.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 install-local.sh diff --git a/install-local.sh b/install-local.sh new file mode 100755 index 0000000..de5b4ae --- /dev/null +++ b/install-local.sh @@ -0,0 +1,10 @@ +#!/bin/sh +themesDest="$HOME/.themes" +iconsDest="$HOME/.icons" +mkdir -p "$themesDest" +mkdir -p "$iconsDest" +echo "... installing theme" +cp -r themes/Wintergreen "$themesDest" +echo "... installing icons" +cp -r icons/Wintergreen "$iconsDest" +echo ".// ok"