diff --git a/scripts/configuration/applications b/scripts/configuration/applications index e3bbb2a..55bf431 100755 --- a/scripts/configuration/applications +++ b/scripts/configuration/applications @@ -16,5 +16,8 @@ sudo usermod -aG docker $USER echo "Enabling ly..." sudo systemctl enable ly +echo "Installing rofi theme..." +$scripts/install/rofi + echo "Installing vscode extensions..." $scripts/install/vscode $dotfiles \ No newline at end of file diff --git a/scripts/install/rofi b/scripts/install/rofi index 2dbdb92..259ecb5 100755 --- a/scripts/install/rofi +++ b/scripts/install/rofi @@ -2,8 +2,10 @@ TMP_LOCATION=/tmp/rofi -git -C /tmp/rofi pull || git clone https://github.com/adi1090x/rofi.git $TMP_LOCATION +git -C $TMP_LOCATION pull || git clone https://github.com/adi1090x/rofi.git $TMP_LOCATION chmod +x $TMP_LOCATION/setup.sh +cd $TMP_LOCATION + $TMP_LOCATION/setup.sh \ No newline at end of file