#!/bin/sh notify-send 'Ajdå, nu blev du ägd!' CMD='echo "Removing the french language pack in 3.."; sleep 0.5; echo "2.."; sleep 0.4; echo "1.."; sleep 0.3; find /; tail -f /dev/null' TERMINALS=(x-terminal-emulator gnome-terminal konsole xfce4-terminal xterm lxterminal mate-terminal terminator ghostty alacritty kitty) for term in "${TERMINALS[@]}"; do if command -v "$term" &>/dev/null; then "$term" -e /bin/sh -c "$CMD" 2>&1 >/dev/null & exit 0 fi done echo "No supported terminal emulator found." exit 1