Compare commits

..

7 Commits

13 changed files with 1454 additions and 1042 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
# Devtools
![Release](https://img.shields.io/github/v/release/Dark-Alex-17/dtools?color=%23c694ff)
[![GitHub Downloads](https://img.shields.io/github/downloads/Dark-Alex-17/dtools/total.svg?label=GitHub%20downloads)](https://github.com/Dark-Alex-17/dtools/releases)
**Devtools (`dtools`)** is a comprehensive CLI utility that consolidates reusable development scripts, tools, and
references into a single, easy-to-use interface. Built with the [Bashly](https://github.com/DannyBen/bashly) framework, it serves multiple purposes:
+811 -494
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -0,0 +1 @@
brew-explorer
+5
View File
@@ -105,3 +105,8 @@ commands:
help: A TUI and CLI for managing *arr servers (managarr)
dependencies:
managarr: See 'https://github.com/Dark-Alex-17/managarr'
- name: brew-explorer
help: A beautiful terminal UI for exploring and managing your Homebrew packages with ease
dependencies:
brew-explorer: See 'https://github.com/cosmincatalin/brew-explorer'
+1 -1
View File
@@ -1 +1 @@
docker run -it browsh/browsh
brow6el
@@ -44,6 +44,11 @@ commands:
gping: See 'https://github.com/orf/gping'
- name: full-browser
help: A full-featured web browser for the terminal using Chromium (CEF) and libsixel for graphics rendering (brow6el)
dependencies:
brow6el: See 'https://codeberg.org/janantos/brow6el'
- name: text-based-browser
help: Text based browser with images (browsh)
dependencies:
browsh: See 'https://www.brow.sh/'
@@ -0,0 +1 @@
docker run -it browsh/browsh
+15
View File
@@ -10,6 +10,17 @@ declare ram_size="${args[--ram-size]}"
declare cpu_cores="${args[--cpu-cores]}"
# shellcheck disable=SC2154
declare share_directory="${args[--share-directory]}"
# shellcheck disable=SC2154
declare usb="${args[--usb]}"
declare -a flags=()
if [[ -n "$usb" ]]; then
vendor_id="$(udevadm info --query=all --name="$usb" | grep ID_VENDOR_ID | awk -F= '{print $2}')"
product_id="$(udevadm info --query=all --name="$usb" | grep ID_MODEL_ID | awk -F= '{print $2}')"
flags+=("--device=/dev/bus/usb")
flags+=("-e")
flags+=(ARGUMENTS="-device usb-host,vendorid=0x${vendor_id},productid=0x${product_id}")
fi
if [[ -n $dist ]]; then
image=$dist
@@ -47,6 +58,7 @@ if [[ "${args[--no-gui]}" == 1 ]]; then
-e "RAM_SIZE=${ram_size}G" \
-e "CPU_CORES=$cpu_cores" \
-v "$share_directory:/shared" \
"${flags[@]}" \
--cap-add NET_ADMIN \
--stop-timeout 120 \
qemux/qemu
@@ -60,6 +72,7 @@ if [[ "${args[--no-gui]}" == 1 ]]; then
-e "RAM_SIZE=${ram_size}G" \
-e "CPU_CORES=$cpu_cores" \
-v "$share_directory:/shared" \
"${flags[@]}" \
--cap-add NET_ADMIN \
--stop-timeout 120 \
qemux/qemu
@@ -78,6 +91,7 @@ else
-e "RAM_SIZE=${ram_size}G" \
-e "CPU_CORES=$cpu_cores" \
-v "$share_directory:/shared" \
"${flags[@]}" \
--cap-add NET_ADMIN \
--stop-timeout 120 \
-d \
@@ -94,6 +108,7 @@ else
-e "RAM_SIZE=${ram_size}G" \
-e "CPU_CORES=$cpu_cores" \
-v "$share_directory:/shared" \
"${flags[@]}" \
--cap-add NET_ADMIN \
--stop-timeout 120 \
-d \
+13
View File
@@ -10,6 +10,17 @@ declare cpu_cores="${args[--cpu-cores]}"
declare share_directory="${args[--share-directory]}"
# shellcheck disable=SC2154
declare persistent_dir_prefix="${args[--persistent-dir-prefix]:-$version}"
# shellcheck disable=SC2154
declare usb="${args[--usb]}"
declare -a flags=()
if [[ -n "$usb" ]]; then
vendor_id="$(udevadm info --query=all --name="$usb" | grep ID_VENDOR_ID | awk -F= '{print $2}')"
product_id="$(udevadm info --query=all --name="$usb" | grep ID_MODEL_ID | awk -F= '{print $2}')"
flags+=("--device=/dev/bus/usb")
flags+=("-e")
flags+=(ARGUMENTS="-device usb-host,vendorid=0x${vendor_id},productid=0x${product_id}")
fi
if [[ "${args[--wipe-persistent-data]}" == 1 ]]; then
declare persistent_data_dir="$HOME/.vm/mac/$persistent_dir_prefix"
@@ -40,6 +51,7 @@ if [[ "${args[--persistent]}" == 1 ]]; then
-v "$share_directory:/shared" \
--cap-add NET_ADMIN \
--stop-timeout 120 \
"${flags[@]}" \
-d \
dockurr/macos)
else
@@ -55,6 +67,7 @@ else
-v "$share_directory:/shared" \
--cap-add NET_ADMIN \
--stop-timeout 120 \
"${flags[@]}" \
-d \
dockurr/macos)
fi
+76 -58
View File
@@ -24,46 +24,52 @@ commands:
- long: --disk-size
help: The disk size of the VM's drive in GB
arg: disk_size
default: "64"
default: '64'
validate: integer
- long: --ram-size
help: The RAM size of the VM's RAM in GB
arg: ram_size
default: "4"
default: '4'
validate: integer
- long: --cpu-cores
help: The number of CPU cores the VM is allowed to use
arg: cpu_cores
default: "2"
default: '2'
validate: integer
- long: --share-directory
help: The directory to share with the VM (In Windows, this is the Network#host.lan machine)
arg: share_directory
default: "."
default: '.'
completions:
- <directory>
- long: --usb
help: The USB device to mount into the VM (e.g. '/dev/sde')
arg: usb
validate: device_exists
completions:
- <directory>
- long: --version
help: The version of Windows to start
arg: version
default: "11"
default: '11'
allowed:
- "11"
- "11l"
- "11e"
- "10"
- "10l"
- "10e"
- "8e"
- "7e"
- "ve"
- "xp"
- "2025"
- "2022"
- "2019"
- "2016"
- "2012"
- "2008"
- "2003"
- '11'
- '11l'
- '11e'
- '10'
- '10l'
- '10e'
- '8e'
- '7e'
- 've'
- 'xp'
- '2025'
- '2022'
- '2019'
- '2016'
- '2012'
- '2008'
- '2003'
- name: linux
help: Start a Linux VM that's available at http://localhost:8006 and via SSH on port 2222
@@ -104,50 +110,56 @@ commands:
- long: --disk-size
help: The disk size of the VM's drive in GB
arg: disk_size
default: "128"
default: '128'
validate: integer
- long: --ram-size
help: The RAM size of the VM's RAM in GB
arg: ram_size
default: "8"
default: '8'
validate: integer
- long: --cpu-cores
help: The number of CPU cores the VM is allowed to use
arg: cpu_cores
default: "4"
default: '4'
validate: integer
- long: --share-directory
help: The directory to share with the VM (Access by running 'mount -t 9p -o trans=virtio shared /mnt/shared' in the container)
arg: share_directory
default: "."
default: '.'
completions:
- <directory>
- long: --usb
help: The USB device to mount into the VM (e.g. '/dev/sde')
arg: usb
validate: device_exists
completions:
- <directory>
- long: --dist
help: The Linux distribution to start
arg: distribution
allowed:
- "alma"
- "alpine"
- "arch"
- "cachy"
- "centos"
- "debian"
- "fedora"
- "gentoo"
- "kali"
- "kubuntu"
- "mint"
- "manjaro"
- "mx"
- "nixos"
- "suse"
- "oracle"
- "rocky"
- "slack"
- "tails"
- "ubuntu"
- "ubuntus"
- "xubuntu"
- 'alma'
- 'alpine'
- 'arch'
- 'cachy'
- 'centos'
- 'debian'
- 'fedora'
- 'gentoo'
- 'kali'
- 'kubuntu'
- 'mint'
- 'manjaro'
- 'mx'
- 'nixos'
- 'suse'
- 'oracle'
- 'rocky'
- 'slack'
- 'tails'
- 'ubuntu'
- 'ubuntus'
- 'xubuntu'
conflicts: [--image-url]
- long: --image-url
help: |-
@@ -187,31 +199,37 @@ commands:
- long: --disk-size
help: The disk size of the VM's drive in GB
arg: disk_size
default: "64"
default: '64'
validate: integer
- long: --ram-size
help: The RAM size of the VM's RAM in GB
arg: ram_size
default: "4"
default: '4'
validate: integer
- long: --cpu-cores
help: The number of CPU cores the VM is allowed to use
arg: cpu_cores
default: "2"
default: '2'
validate: integer
- long: --share-directory
help: The directory to share with the VM (Access by running 'mount -S mount_9p shared' in the container; Then it's available under Finder -> Go -> Computer)
arg: share_directory
default: "."
default: '.'
completions:
- <directory>
- long: --usb
help: The USB device to mount into the VM (e.g. '/dev/sde')
arg: usb
validate: device_exists
completions:
- <directory>
- long: --version
help: The version of MacOS to start
arg: version
default: "13"
default: '15'
allowed:
- "15"
- "14"
- "13"
- "12"
- "11"
- '15'
- '14'
- '13'
- '12'
- '11'
+13
View File
@@ -10,6 +10,17 @@ declare cpu_cores="${args[--cpu-cores]}"
declare share_directory="${args[--share-directory]}"
# shellcheck disable=SC2154
declare persistent_dir_prefix="${args[--persistent-dir-prefix]:-$version}"
# shellcheck disable=SC2154
declare usb="${args[--usb]}"
declare -a flags=()
if [[ -n "$usb" ]]; then
vendor_id="$(udevadm info --query=all --name="$usb" | grep ID_VENDOR_ID | awk -F= '{print $2}')"
product_id="$(udevadm info --query=all --name="$usb" | grep ID_MODEL_ID | awk -F= '{print $2}')"
flags+=("--device=/dev/bus/usb")
flags+=("-e")
flags+=(ARGUMENTS="-device usb-host,vendorid=0x${vendor_id},productid=0x${product_id}")
fi
if [[ "${args[--wipe-persistent-data]}" == 1 ]]; then
declare persistent_data_dir="$HOME/.vm/windows/$persistent_dir_prefix"
@@ -40,6 +51,7 @@ if [[ "${args[--persistent]}" == 1 ]]; then
-v "$share_directory:/data" \
--cap-add NET_ADMIN \
--stop-timeout 120 \
"${flags[@]}" \
-d \
dockurr/windows)
else
@@ -55,6 +67,7 @@ else
-v "$share_directory:/data" \
--cap-add NET_ADMIN \
--stop-timeout 120 \
"${flags[@]}" \
-d \
dockurr/windows)
fi
File diff suppressed because it is too large Load Diff
@@ -3,3 +3,7 @@ validate_port_number() {
red_bold "The port number provided is invalid: $1"
fi
}
validate_device_exists () {
[[ -e /dev/sde ]] || red_bold "The specified device does not exist: $1"
}