Skip to content

Instantly share code, notes, and snippets.

View 4r7if3x's full-sized avatar

The Artifex 4r7if3x

View GitHub Profile
@4r7if3x
4r7if3x / proxmox-ubuntu-cloud-init-template.sh
Created September 18, 2024 21:39
Create Ubuntu Clone Template VM on Proxmox via Cloud-Init
#!/usr/bin/env bash
# ╔══════════════════════════════════════════════════════════════════════════╗
# ║ Copyright © 2024 The Artifex (4r7if3x). Published under the MIT License. ║
# ╚══════════════════════════════════════════════════════════════════════════╝
# Initializing
set -e; echo
# Setting variables
@4r7if3x
4r7if3x / cloudflare-warp-ubuntu-23-later-installer.sh
Created May 27, 2024 09:45
Install Cloudflare WARP Client on Ubuntu 23.10 and Later
#!/usr/bin/env bash
# ╔══════════════════════════════════════════════════════════════════════════╗
# ║ Copyright © 2023 The Artifex (4r7if3x). Published under the MIT License. ║
# ╚══════════════════════════════════════════════════════════════════════════╝
set -e
# Hardcoded 'Jammy' as the repository does not provide packages for newer Ubuntu versions
DISTRO_CODENAME=jammy # $(lsb_release -cs 2>/dev/null)
@4r7if3x
4r7if3x / jetbrains-ubuntu-24-later-fix.sh
Created May 26, 2024 23:16
Fix JetBrains IDEs Crashing on Ubuntu 24.04 and Later
#!/usr/bin/env bash
# ╔══════════════════════════════════════════════════════════════════════════╗
# ║ Copyright © 2024 The Artifex (4r7if3x). Published under the MIT License. ║
# ╚══════════════════════════════════════════════════════════════════════════╝
set -e
echo; trap 'echo -e "\n\nAborted script.\n"; exit 1' SIGINT
@4r7if3x
4r7if3x / acer-a5-webcam-fix.sh
Created May 26, 2024 23:13
Patch UVC Kernel Driver for Acer Aspire 5 Webcam
#!/usr/bin/env bash
# ╔══════════════════════════════════════════════════════════════════════════╗
# ║ Copyright © 2024 The Artifex (4r7if3x). Published under the MIT License. ║
# ╚══════════════════════════════════════════════════════════════════════════╝
# shellcheck disable=SC2046,SC2086
set -e