install_mine_prim
"/home/yossef/notes/git/scripts/install_mine_prim.md"
path: git/scripts/install_mine_prim.md
- **fileName**: install_mine_prim
- **Created on**: 2025-03-26 16:42:29
for install minecrift prismlauncer
#!/usr/bin/env bash
_install(){
if _commend_exists prismlauncer; then
cecho "prismlauncer found (installed)" yellow
exit 1
fi
cecho "starting install AppImage for prismlauncer" blue
curl -LO https://github.com/PrismLauncher/PrismLauncher/releases/download/9.2/PrismLauncher-Linux-x86_64.AppImage
if [[ $? != 0 ]];then
cecho "error happend in install AppImage" red
exit 1
fi
chmod +x ./PrismLauncher-Linux-x86_64.AppImage
cp ./PrismLauncher*.AppImage /usr/bin/prismlauncer
./PrismLauncher*.AppImage
cecho "finish install" green
}
_install
references
-
continue:./setup_mpd.md
before:./_install_tgpt.md