This commit is contained in:
pika 2025-06-20 10:07:40 +02:00
parent 1812c37d01
commit 26275e72bb

View file

@ -116,9 +116,12 @@
}
clone-quickshell() {
local err out
local err out repo
local dir="$HOME/.config/quickshell"
# repo="https://github.com/caelestia-dots/shell.git"
repo="https://git.k4li.de/dotfiles/quickshell.git"
if [ -d "$dir" ]; then
pen bold red "There is already a configuration at $dir"
if confirm bold blue "Do you want to delete it?" </dev/tty; then
@ -129,7 +132,7 @@
fi
else
spin bold yellow "Cloning quickshell to $dir.."
if run --err err --out out git clone --depth=1 https://github.com/caelestia-dots/shell.git $dir; then
if run --err err --out out git clone --depth=1 "$repo" "$dir"; then
upclear
check bold green "Cloned quickshell successfully"
else