fix(bootstrap-linux): Fix appman setup

This commit is contained in:
js0ny 2025-02-23 21:17:49 +00:00
parent 3c0e075324
commit f015467b1b
2 changed files with 13 additions and 3 deletions

View file

@ -2,7 +2,9 @@ echo "[INFO] Installing AppMan"
echo "[ACTION] Type [2] to install 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 wget -q https://raw.githubusercontent.com/ivan-hc/AM/main/AM-INSTALLER && chmod a+x ./AM-INSTALLER && ./AM-INSTALLER
if command -v appman >/dev/null 2>&1; then APPMAN_PATH="$HOME/.local/bin/appman"
appman install wezterm
appman install nvim if command -v $APPMAN_PATH >/dev/null 2>&1; then
$APPMAN_PATH install wezterm
$APPMAN_PATH install nvim
fi fi

View file

@ -6,6 +6,14 @@ No rice, no Unixporn/NTporn, just a simple setup that works for me.
Works for Windows, Linux and MacOS. Works for Windows, Linux and MacOS.
** Setup
*** GNU/Linux and macOS
#+begin_src shell
curl https://raw.githubusercontent.com/js0ny/dotfiles/refs/heads/master/bootstrap/setup.sh -o setup.sh && chmod u+x setup.sh && ./setup.sh
#+end_src
** Structure ** Structure
#+begin_src shell #+begin_src shell