lactozora/modules/gui.bash
2025-02-18 23:18:00 -06:00

7 lines
166 B
Bash
Executable file

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