.dotfiles/tmux/tmux-ggclone

17 lines
223 B
Plaintext
Raw Normal View History

#!/usr/bin/env bash
2024-02-19 15:51:48 +01:00
source "$XDG_CONFIG_HOME/zsh/scripts.zsh"
if [[ $# -eq 1 ]]; then
selected=$1
else
read -p "ssh url: " selected
fi
if [[ -z $selected ]]; then
exit 0
fi
ggman clone "$selected"
2024-02-19 15:51:48 +01:00
ggcompile