mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
10 lines
347 B
Bash
10 lines
347 B
Bash
echo "[INFO] Installing AppMan"
|
|
echo "[ACTION] Type [2] to install AppMan"
|
|
wget -q https://raw.githubusercontent.com/ivan-hc/AM/main/AM-INSTALLER && chmod a+x ./AM-INSTALLER && ./AM-INSTALLER
|
|
|
|
APPMAN_PATH="$HOME/.local/bin/appman"
|
|
|
|
if command -v $APPMAN_PATH >/dev/null 2>&1; then
|
|
$APPMAN_PATH install wezterm
|
|
$APPMAN_PATH install nvim
|
|
fi
|