diff options
| author | installer <installer@gmail.com> | 2025-02-16 22:35:23 +0900 |
|---|---|---|
| committer | installer <installer@gmail.com> | 2025-02-16 22:35:23 +0900 |
| commit | 71870158a308862197dbaf568295fba053a2eaad (patch) | |
| tree | fc51f00fd5faa826763363c402a8628531fd4bd9 /copy.sh | |
| parent | 1797deb5c7bf376f035bee7f74b18cf152011ff1 (diff) | |
added Debian-ubuntu fool proof when running copy.sh
Diffstat (limited to 'copy.sh')
| -rwxr-xr-x | copy.sh | 23 |
1 files changed, 22 insertions, 1 deletions
@@ -30,7 +30,28 @@ if [[ $EUID -eq 0 ]]; then printf "\n%.0s" {1..2} exit 1 fi - + +# Function to print colorful text +print_color() { + printf "%b%s%b\n" "$1" "$2" "$CLEAR" +} + +# Check if dpkg is installed (use to check if Debian or Ubuntu or based distros) +if command -v dpkg &> /dev/null; then + printf "\n%.0s" {1..1} + print_color $WARNING " + █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█ + INCOMPATIBLE + █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█ + + You are running Debian / Ubuntu. Kindly refer to Hyprland-Dots Readme + for instruction on how to update your Hyprland-Dots + " + printf "\n%.0s" {1..3} + exit 1 +fi + + printf "\n%.0s" {1..1} echo -e "\e[35m ╦╔═┌─┐┌─┐╦ ╔╦╗┌─┐┌┬┐┌─┐ |
