Skip to content

Instantly share code, notes, and snippets.

View jdonohoo's full-sized avatar

Justin Donohoo jdonohoo

View GitHub Profile
@danawesome
danawesome / install-custom.sh
Last active April 20, 2026 15:28
Zorin OS 17 Post Install custom installs
#!/bin/bash
# APT Install of net-tools, MS VSCode (and dependencies), then reboot.
if [ "$(id -u)" -ne 0 ]; then
echo 'This script must be run with root privileges' >&2
exit 1
fi
apt update && apt upgrade -y
@danawesome
danawesome / uninstall-xrdp.sh
Last active April 20, 2026 15:28
Zorin OS 17 remove enhanced session xrdp
#!/bin/bash
if [ "$(id -u)" -ne 0 ]; then
echo 'This script must be run with root privileges' >&2
exit 1
fi
if [ -f /var/run/reboot-required ]; then
echo "A reboot is required in order to proceed with the install." >&2
echo "Please reboot and re-run this script to finish the install." >&2