lactozora/modules/gui.bash
2025-01-27 00:12:03 -06:00

7 lines
166 B
Bash

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