Compare commits

...

3 Commits

Author SHA1 Message Date
nyx
30e0d8adf1
Merge dcc32bca48 into f5f38243f0 2024-11-08 07:25:41 +00:00
nnyyxxxx
dcc32bca48
disregard escalation tool variable if found as root 2024-11-08 02:25:35 -05:00
nnyyxxxx
7f0d456c68
run cargo xtask docgen 2024-11-08 02:06:13 -05:00
2 changed files with 9 additions and 1 deletions

View File

@ -84,7 +84,13 @@ checkAURHelper() {
}
checkEscalationTool() {
## Check for escalation tools.
if [ "$(id -u)" = "0" ]; then
ESCALATION_TOOL="eval"
ESCALATION_TOOL_CHECKED=true
printf "%b\n" "${CYAN}Running as root, no escalation needed${RC}"
return 0
fi
if [ -z "$ESCALATION_TOOL_CHECKED" ]; then
ESCALATION_TOOLS='sudo doas'
for tool in ${ESCALATION_TOOLS}; do

View File

@ -25,6 +25,8 @@ This command configures neovim from CTT's neovim configuration.
https://github.com/ChrisTitusTech/neovim
- **Ngrok**: Ngrok is a tool that creates secure, temporary tunnels to expose local servers to the internet for testing and development.
- **Sublime Text**: Sublime Text is a fast, lightweight, and customizable text editor known for its simplicity, powerful features, and wide range of plugins for various programming languages.
- **ZapZap**: ZapZap is an open source whatsapp desktop client for Linux users developed by rafatosta.
- **Zoom**: Zoom is a widely-used video conferencing platform that allows users to host virtual meetings, webinars, and online collaboration with features like screen sharing and recording.
- **VS Code**: Visual Studio Code (VS Code) is a lightweight, open-source code editor with built-in support for debugging, version control, and extensions for various programming languages and frameworks.
- **VS Codium**: VSCodium is a free, open-source version of Visual Studio Code (VS Code) that removes Microsoft-specific telemetry and branding.