#!/bin/bash # Function to show a notification using zenity show_notification() { local message="$1" zenity --info --text="$message" --title="Notification" }