mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
12 lines
379 B
Bash
12 lines
379 B
Bash
#!/usr/bin/env bash
|
|
# vim:ft=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
|