adds popos compatibility
Some checks failed
Ansible Lint Check / check-ansible (push) Failing after 36s
Nix Format Check / check-format (push) Failing after 1m26s
Python Lint Check / check-python (push) Failing after 20s

This commit is contained in:
2025-05-19 15:27:46 +02:00
parent ea41c83161
commit 21c4b17f76
16 changed files with 62 additions and 78 deletions

View File

@@ -301,7 +301,7 @@ warning_prompt() {
log_error "Please ensure you have a backup of your data before proceeding."
log_error "This script will modify system files and may require sudo permissions."
echo ""
log_info "This script has been tested on Ubuntu 22.04, 24.04, 24.10, Debian 12 and Fedora 41."
log_info "This script has been tested on Ubuntu 22.04, 24.04, 24.10, Pop!_OS 24.04 Alpha 7, Debian 12 and Fedora 41."
log_info "Setup starts in 10 seconds, to abort use Ctrl+C to exit NOW."
echo ""
sleep 10
@@ -418,6 +418,13 @@ check_compatibility() {
sleep 5
check_command_availibility "apt"
;;
Pop!_OS*)
log_success "Detected Pop!_OS. Proceeding with setup..."
log_warning "Only COSMIC alpha is supported, other versions are not tested."
log_warning "Continueing in 5 seconds..."
sleep 5
check_command_availibility "apt"
;;
*)
die "Unsupported distribution: $distro"
;;