From d6c914deb0936cc46163e3b9353575b8189b6258 Mon Sep 17 00:00:00 2001 From: Yigid BALABAN Date: Wed, 3 Jul 2024 01:29:49 +0300 Subject: [PATCH] + install.sh --- install.sh | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 install.sh diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..94c2147 --- /dev/null +++ b/install.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env bash + +# reve desktop environment framework +# Yigid BALABAN 2024 + +rt_script_dir=$(realpath "$(dirname $0)") +cd "$rt_script_dir" + +reve_installation_target="$HOME/.local/reve" + +echo "Creating reve installation folder" +mkdir -p "$reve_installation_target" + +echo "Copying: reve.sh" +cp reve.sh "$reve_installation_target/reve" +chmod +x "$reve_installation_target/reve" + +echo "Creating chores/mode folder" +mkdir -p "$reve_installation_target/chores/mode" + +echo "Copying chore: gtk_theme.sh" +cp chores/mode/gtk_theme.sh "$reve_installation_target/chores/mode/gtk_theme.sh" +chmod +x "$reve_installation_target/chores/mode/gtk_theme.sh" + +echo "Base installation completed. You can copy remaining default chores from chores/mode at will or create your own chores following the examples in examples folder. +exit 0