mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-22 05:12:27 +00:00
added lapce IDE
This commit is contained in:
parent
36d65e5e63
commit
ff26cb159c
25
core/tabs/applications-setup/Developer-tools/lapce.sh
Normal file
25
core/tabs/applications-setup/Developer-tools/lapce.sh
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
#!/bin/sh -e
|
||||||
|
|
||||||
|
. ../../common-script.sh
|
||||||
|
|
||||||
|
installLapce() {
|
||||||
|
if ! command_exists lapce; then
|
||||||
|
printf "%b\n" "${YELLOW}Installing Lapce...${RC}"
|
||||||
|
case "$PACKAGER" in
|
||||||
|
pacman)
|
||||||
|
"$AUR_HELPER" -S --needed --noconfirm lapce
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
. ../setup-flatpak.sh
|
||||||
|
flatpak install flathub dev.lapce.lapce
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
else
|
||||||
|
printf "%b\n" "${GREEN}Lapce is already installed.${RC}"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
checkEnv
|
||||||
|
checkEscalationTool
|
||||||
|
checkAURHelper
|
||||||
|
installLapce
|
|
@ -27,6 +27,12 @@ description = "Visual Studio Code (VS Code) is a lightweight, open-source code e
|
||||||
script = "Developer-tools/vscode-setup.sh"
|
script = "Developer-tools/vscode-setup.sh"
|
||||||
task_list = "I"
|
task_list = "I"
|
||||||
|
|
||||||
|
[[data.entries]]
|
||||||
|
name = "Lapce"
|
||||||
|
description = "Lapce is an open source code editor written in Rust."
|
||||||
|
script = "Developer-tools/lapce.sh"
|
||||||
|
task_list = "FI"
|
||||||
|
|
||||||
[[data.entries]]
|
[[data.entries]]
|
||||||
name = "VS Codium"
|
name = "VS Codium"
|
||||||
description = "VSCodium is a free, open-source version of Visual Studio Code (VS Code) that removes Microsoft-specific telemetry and branding."
|
description = "VSCodium is a free, open-source version of Visual Studio Code (VS Code) that removes Microsoft-specific telemetry and branding."
|
||||||
|
|
Loading…
Reference in New Issue
Block a user