This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# ╔══════════════════════════════════════════════════════════════════════════╗ | |
# ║ Copyright © 2024 The Artifex (4r7if3x). Published under the MIT License. ║ | |
# ╚══════════════════════════════════════════════════════════════════════════╝ | |
# Initializing | |
set -e; echo | |
# Setting variables |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# ╔══════════════════════════════════════════════════════════════════════════╗ | |
# ║ Copyright © 2024 The Artifex (4r7if3x). Published under the MIT License. ║ | |
# ╚══════════════════════════════════════════════════════════════════════════╝ | |
# shellcheck disable=SC2046,SC2086 | |
set -e |